CloneSet986


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6320.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16311
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java
26335
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java
36381
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
311
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java

/**
 * Sets the class used to create the first and last time periods for the 
 * axis range when the auto-range flag is set to <code>true</code> and 
 * sends an {@link AxisChangeEvent} to all registered listeners.
 * 
 * @param c  the class (<code>null</code> not permitted).
 */
public void setAutoRangeTimePeriodClass(Class c) {
  if (c == null) {
    throw new IllegalArgumentException("Null \'c\' argument.");
  }
  this.autoRangeTimePeriodClass = c;
  notifyListeners(new AxisChangeEvent(this ));
}


Next
Previous
Clone Instance
2
Line Count
6
Source Line
335
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java

/**
 * Sets the class that controls the spacing of the major tick marks, and 
 * sends an {@link AxisChangeEvent} to all registered listeners.
 * 
 * @param c  the class (a subclass of {@link RegularTimePeriod} is 
 *           expected).
 */
public void setMajorTickTimePeriodClass(Class c) {
  if (c == null) {
    throw new IllegalArgumentException("Null \'c\' argument.");
  }
  this.majorTickTimePeriodClass = c;
  notifyListeners(new AxisChangeEvent(this ));
}


First
Previous
Clone Instance
3
Line Count
6
Source Line
381
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java

/**
 * Sets the class that controls the spacing of the minor tick marks, and 
 * sends an {@link AxisChangeEvent} to all registered listeners.
 * 
 * @param c  the class (a subclass of {@link RegularTimePeriod} is 
 *           expected).
 */
public void setMinorTickTimePeriodClass(Class c) {
  if (c == null) {
    throw new IllegalArgumentException("Null \'c\' argument.");
  }
  this.minorTickTimePeriodClass = c;
  notifyListeners(new AxisChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the class that controls the spacing of the minor tick marks, and 
     * sends an {@link AxisChangeEvent} to all registered listeners.
     * 
     * @param c  the class (a subclass of {@link RegularTimePeriod} is 
     *           expected).
     */
/**
     * Sets the class that controls the spacing of the major tick marks, and 
     * sends an {@link AxisChangeEvent} to all registered listeners.
     * 
     * @param c  the class (a subclass of {@link RegularTimePeriod} is 
     *           expected).
     */
/**
     * Sets the class used to create the first and last time periods for the 
     * axis range when the auto-range flag is set to <code>true</code> and 
     * sends an {@link AxisChangeEvent} to all registered listeners.
     * 
     * @param c  the class (<code>null</code> not permitted).
     */
public void [[#variable18e2a520]](Class c) {
  if (c == null) {
    throw new IllegalArgumentException("Null \'c\' argument.");
  }
  this. [[#variable18e2a420]]= c;
  notifyListeners(new AxisChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e2a520]]
setAutoRangeTimePeriodClass 
12[[#18e2a520]]
setMajorTickTimePeriodClass 
13[[#18e2a520]]
setMinorTickTimePeriodClass 
21[[#18e2a420]]
autoRangeTimePeriodClass 
22[[#18e2a420]]
majorTickTimePeriodClass 
23[[#18e2a420]]
minorTickTimePeriodClass