Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 3 | 2 | 0.964 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 311 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java |
2 | 6 | 335 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java |
3 | 6 | 381 | 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 )); } |
| |||||
/** * 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 )); } |
| |||||
/** * 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 )); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18e2a520]] | setAutoRangeTimePeriodClass |
1 | 2 | [[#18e2a520]] | setMajorTickTimePeriodClass |
1 | 3 | [[#18e2a520]] | setMinorTickTimePeriodClass |
2 | 1 | [[#18e2a420]] | autoRangeTimePeriodClass |
2 | 2 | [[#18e2a420]] | majorTickTimePeriodClass |
2 | 3 | [[#18e2a420]] | minorTickTimePeriodClass |