CloneSet708


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

/**
 * Sets the size of the chart title.
 *
 * @param {number} size The title size, in points.
 */
goog.ui.ServerChart.prototype.setTitleSize=  function (size){
  this.titleSize_=  size;
  this.uri_.setParameterValue(goog.ui.ServerChart.UriParam.TITLE_FORMAT,
                              this.titleColor_+  ','+  this.titleSize_);
                                                            } ;


/**
 * @return {number} size The title size, in points.
 */
goog.ui.ServerChart.prototype.getTitleSize=  function ( )
                                                        {
  return this.titleSize_;
                                                        } ;


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

/**
 * Sets the color of the chart title.
 *
 * NOTE: The color string should NOT have a '#' at the beginning of it.
 *
 * @param {string} color The hex value for the title color.
 */
goog.ui.ServerChart.prototype.setTitleColor=  function (color){
  this.titleColor_=  color;
  this.uri_.setParameterValue(goog.ui.ServerChart.UriParam.TITLE_FORMAT,
                              this.titleColor_+  ','+  this.titleSize_);
                                                              } ;


/**
 * @return {string} color The hex value for the title color.
 */
goog.ui.ServerChart.prototype.getTitleColor=  function ( )
                                                         {
  return this.titleColor_;
                                                         } ;


Clone AbstractionParameter Count: 4Parameter Bindings

/**
 * Sets the size of the chart title.
 *
 * @param {number} size The title size, in points.
 */
/**
 * Sets the color of the chart title.
 *
 * NOTE: The color string should NOT have a '#' at the beginning of it.
 *
 * @param {string} color The hex value for the title color.
 */
goog.ui.ServerChart.prototype. [[#variable1eee22e0]]= function ( [[#variable1eee22a0]])
                                                      { this. [[#variable1eee2260]]= [[#variable1eee22a0]];
                                                        this.uri_.setParameterValue(goog.ui.ServerChart.UriParam.TITLE_FORMAT,this.titleColor_+','+this.titleSize_);
                                                      } ;
/**
 * @return {number} size The title size, in points.
 */
/**
 * @return {string} color The hex value for the title color.
 */
goog.ui.ServerChart.prototype. [[#variable1eee2100]]= function ( )
                                                      { return this. [[#variable1eee2260]];
                                                      } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1eee22e0]]
setTitleSize 
12[[#1eee22e0]]
setTitleColor 
21[[#1eee22a0]]
size 
22[[#1eee22a0]]
color 
31[[#1eee2260]]
titleSize_ 
32[[#1eee2260]]
titleColor_ 
41[[#1eee2100]]
getTitleSize 
42[[#1eee2100]]
getTitleColor