CloneSet780


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12230.966SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
112747
Closure/closure/goog/ui/serverchart.js
212767
Closure/closure/goog/ui/serverchart.js
Clone Instance
1
Line Count
12
Source Line
747
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * Sets the number of grid lines along the X-axis.
 *
 * @param {number} gridlines The number of X-axis grid lines.
 */
goog.ui.ServerChart.prototype.setGridX=  function (gridlines){
  // Need data for this to work.
  this.gridX_=  gridlines;
  this.setGrids_(this.gridX_, this.gridY_);
                                                             } ;


/**
 * @return {number} The number of gridlines along the X-axis.
 */
goog.ui.ServerChart.prototype.getGridX=  function ( )
                                                    {
  return this.gridX_;
                                                    } ;


Clone Instance
2
Line Count
12
Source Line
767
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * Sets the number of grid lines along the Y-axis.
 *
 * @param {number} gridlines The number of Y-axis grid lines.
 */
goog.ui.ServerChart.prototype.setGridY=  function (gridlines){
  // Need data for this to work.
  this.gridY_=  gridlines;
  this.setGrids_(this.gridX_, this.gridY_);
                                                             } ;


/**
 * @return {number} The number of gridlines along the Y-axis.
 */
goog.ui.ServerChart.prototype.getGridY=  function ( )
                                                    {
  return this.gridY_;
                                                    } ;


Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * Sets the number of grid lines along the X-axis.
 *
 * @param {number} gridlines The number of X-axis grid lines.
 */
/**
 * Sets the number of grid lines along the Y-axis.
 *
 * @param {number} gridlines The number of Y-axis grid lines.
 */
goog.ui.ServerChart.prototype. [[#variable1f9a6720]]= function (gridlines)
                                                      {
                                                        // Need data for this to work.
                                                        this. [[#variable1fd49a80]]=gridlines;
                                                        this.setGrids_(this.gridX_,this.gridY_);
                                                      } ;
/**
 * @return {number} The number of gridlines along the X-axis.
 */
/**
 * @return {number} The number of gridlines along the Y-axis.
 */
goog.ui.ServerChart.prototype. [[#variable1f9a6660]]= function ( )
                                                      { return this. [[#variable1fd49a80]];
                                                      } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1f9a6720]]
setGridX 
12[[#1f9a6720]]
setGridY 
21[[#1fd49a80]]
gridX_ 
22[[#1fd49a80]]
gridY_ 
31[[#1f9a6660]]
getGridX 
32[[#1f9a6660]]
getGridY