CloneSet301


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14330.972SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
114377
Closure/closure/goog/ui/serverchart.js
214400
Closure/closure/goog/ui/serverchart.js
316981
Closure/closure/goog/ui/serverchart.js
Clone Instance
1
Line Count
14
Source Line
377
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * Sets the 'chg' parameter of the chart Uri.
 * This is used by various types of charts to specify Grids.
 *
 * @param {string} value Value for the 'chg' parameter in the chart Uri.
 */
goog.ui.ServerChart.prototype.setGridParameter=  function (value){
  this.uri_.setParameterValue(goog.ui.ServerChart.UriParam.GRID, value);
                                                                 } ;


/**
 * Returns the 'chg' parameter of the chart Uri.
 * This is used by various types of charts to specify Grids.
 *
 * @return {string|undefined} The 'chg' parameter of the chart Uri.
 */
goog.ui.ServerChart.prototype.getGridParameter=  function ( )
                                                            {
  return /** @type {string} */
                               (
      this.uri_.getParameterValue(goog.ui.ServerChart.UriParam.GRID));
                                                            } ;


Clone Instance
2
Line Count
14
Source Line
400
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * Sets the 'chm' parameter of the chart Uri.
 * This is used by various types of charts to specify Markers.
 *
 * @param {string} value Value for the 'chm' parameter in the chart Uri.
 */
goog.ui.ServerChart.prototype.setMarkerParameter=  function (value){
  this.uri_.setParameterValue(goog.ui.ServerChart.UriParam.MARKERS, value);
                                                                   } ;


/**
 * Returns the 'chm' parameter of the chart Uri.
 * This is used by various types of charts to specify Markers.
 *
 * @return {string|undefined} The 'chm' parameter of the chart Uri.
 */
goog.ui.ServerChart.prototype.getMarkerParameter=  function ( )
                                                              {
  return /** @type {string} */
                               (
      this.uri_.getParameterValue(goog.ui.ServerChart.UriParam.MARKERS));
                                                              } ;


Clone Instance
3
Line Count
16
Source Line
981
Source File
Closure/closure/goog/ui/serverchart.js

/**
 * Sets the position relative to the chart where the legend is to be displayed.
 *
 * @param {goog.ui.ServerChart.LegendPosition} value Legend position.
 */
goog.ui.ServerChart.prototype.setLegendPosition=  function (value){
  this.uri_.setParameterValue(
      goog.ui.ServerChart.UriParam.LEGEND_POSITION, value);
                                                                  } ;


/**
 * Returns the position relative to the chart where the legend is to be
 * displayed.
 *
 * @return {goog.ui.ServerChart.LegendPosition} Legend position.
 */
goog.ui.ServerChart.prototype.getLegendPosition=  function ( )
                                                             {
  return /** @type {goog.ui.ServerChart.LegendPosition} */
                                                           (
      this.uri_.getParameterValue(
          goog.ui.ServerChart.UriParam.LEGEND_POSITION));
                                                             } ;


Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * Sets the 'chg' parameter of the chart Uri.
 * This is used by various types of charts to specify Grids.
 *
 * @param {string} value Value for the 'chg' parameter in the chart Uri.
 */
/**
 * Sets the 'chm' parameter of the chart Uri.
 * This is used by various types of charts to specify Markers.
 *
 * @param {string} value Value for the 'chm' parameter in the chart Uri.
 */
/**
 * Sets the position relative to the chart where the legend is to be displayed.
 *
 * @param {goog.ui.ServerChart.LegendPosition} value Legend position.
 */
goog.ui.ServerChart.prototype. [[#variable5c799060]]= function (value)
                                                      { this.uri_.setParameterValue(goog.ui.ServerChart.UriParam. [[#variable5c798e60]],value);
                                                      } ;
/**
 * Returns the 'chg' parameter of the chart Uri.
 * This is used by various types of charts to specify Grids.
 *
 * @return {string|undefined} The 'chg' parameter of the chart Uri.
 */
/**
 * Returns the 'chm' parameter of the chart Uri.
 * This is used by various types of charts to specify Markers.
 *
 * @return {string|undefined} The 'chm' parameter of the chart Uri.
 */
/**
 * Returns the position relative to the chart where the legend is to be
 * displayed.
 *
 * @return {goog.ui.ServerChart.LegendPosition} Legend position.
 */
goog.ui.ServerChart.prototype. [[#variable5c798fc0]]= function ( )
                                                      { return /** @type {string} */ /** @type {goog.ui.ServerChart.LegendPosition} */
                                                        (this.uri_.getParameterValue(goog.ui.ServerChart.UriParam. [[#variable5c798e60]]));
                                                      } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5c799060]]
setGridParameter 
12[[#5c799060]]
setMarkerParameter 
13[[#5c799060]]
setLegendPosition 
21[[#5c798e60]]
GRID 
22[[#5c798e60]]
MARKERS 
23[[#5c798e60]]
LEGEND_POSITION 
31[[#5c798fc0]]
getGridParameter 
32[[#5c798fc0]]
getMarkerParameter 
33[[#5c798fc0]]
getLegendPosition