CloneSet207


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4430.974SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14427
Closure/closure/goog/fx/dom.js
24443
Closure/closure/goog/fx/dom.js
34459
Closure/closure/goog/fx/dom.js
44490
Closure/closure/goog/fx/dom.js
Clone Instance
1
Line Count
4
Source Line
427
Source File
Closure/closure/goog/fx/dom.js

/**
 * Fades an element out from full opacity to completely transparent.
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
goog.fx.dom.FadeOut=  function (element, time, opt_acc){
  goog.fx.dom.Fade.call(this, element, 1, 0, time, opt_acc);
                                                       } ;
goog.inherits(goog.fx.dom.FadeOut, goog.fx.dom.Fade);


Clone Instance
2
Line Count
4
Source Line
443
Source File
Closure/closure/goog/fx/dom.js

/**
 * Fades an element in from completely transparent to fully opacity.
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
goog.fx.dom.FadeIn=  function (element, time, opt_acc){
  goog.fx.dom.Fade.call(this, element, 0, 1, time, opt_acc);
                                                      } ;
goog.inherits(goog.fx.dom.FadeIn, goog.fx.dom.Fade);


Clone Instance
3
Line Count
4
Source Line
459
Source File
Closure/closure/goog/fx/dom.js

/**
 * Fades an element out from full opacity to completely transparent and then
 * sets the display to 'none'
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
goog.fx.dom.FadeOutAndHide=  function (element, time, opt_acc){
  goog.fx.dom.Fade.call(this, element, 1, 0, time, opt_acc);
                                                              } ;
goog.inherits(goog.fx.dom.FadeOutAndHide, goog.fx.dom.Fade);


Clone Instance
4
Line Count
4
Source Line
490
Source File
Closure/closure/goog/fx/dom.js

/**
 * Sets an element's display to be visible and then fades an element in from
 * completely transparent to fully opacity
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
goog.fx.dom.FadeInAndShow=  function (element, time, opt_acc){
  goog.fx.dom.Fade.call(this, element, 0, 1, time, opt_acc);
                                                             } ;
goog.inherits(goog.fx.dom.FadeInAndShow, goog.fx.dom.Fade);


Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * Fades an element out from full opacity to completely transparent.
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
/**
 * Fades an element in from completely transparent to fully opacity.
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
/**
 * Fades an element out from full opacity to completely transparent and then
 * sets the display to 'none'
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
/**
 * Sets an element's display to be visible and then fades an element in from
 * completely transparent to fully opacity
 *
 * @param {Element} element Dom Node to be used in the animation.
 * @param {number} time Length of animation in milliseconds.
 * @param {Function=} opt_acc Acceleration function, returns 0-1 for inputs 0-1.
 * @extends {goog.fx.dom.Fade}
 * @constructor
 */
goog.fx.dom. [[#variable5db645c0]]= function (element,time,opt_acc)
                                    { goog.fx.dom.Fade.call(this,element, [[#variable5ec99ca0]], [[#variable5db64420]],time,opt_acc);
                                    } ;
goog.inherits(goog.fx.dom. [[#variable5db645c0]],goog.fx.dom.Fade);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5db645c0]]
FadeOut 
12[[#5db645c0]]
FadeIn 
13[[#5db645c0]]
FadeOutAndHide 
14[[#5db645c0]]
FadeInAndShow 
21[[#5ec99ca0]]
1 
22[[#5ec99ca0]]
0 
23[[#5ec99ca0]]
1 
24[[#5ec99ca0]]
0 
31[[#5db64420]]
0 
32[[#5db64420]]
1 
33[[#5db64420]]
0 
34[[#5db64420]]
1