Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 2 | 0.964 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 406 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java |
2 | 6 | 517 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java |
| |||||
/** * Sets the length factor for the major tick marks and sends a * {@link DialLayerChangeEvent} to all registered listeners. * * @param length the length. * * @see #getMajorTickLength() */ public void setMajorTickLength(double length) { if (length < 0.0) { throw new IllegalArgumentException("Negative \'length\' argument."); } this.majorTickLength = length; notifyListeners(new DialLayerChangeEvent(this )); } |
| |||||
/** * Sets the length factor for the minor tick marks and sends * a {@link DialLayerChangeEvent} to all registered listeners. * * @param length the length. * * @see #getMinorTickLength() */ public void setMinorTickLength(double length) { if (length < 0.0) { throw new IllegalArgumentException("Negative \'length\' argument."); } this.minorTickLength = length; notifyListeners(new DialLayerChangeEvent(this )); } |
| |||
/** * Sets the length factor for the minor tick marks and sends * a {@link DialLayerChangeEvent} to all registered listeners. * * @param length the length. * * @see #getMinorTickLength() */ /** * Sets the length factor for the major tick marks and sends a * {@link DialLayerChangeEvent} to all registered listeners. * * @param length the length. * * @see #getMajorTickLength() */ public void [[#variable18fafd40]](double length) { if (length < 0.0) { throw new IllegalArgumentException("Negative \'length\' argument."); } this. [[#variable18fafc20]]= length; notifyListeners(new DialLayerChangeEvent(this )); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18fafd40]] | setMajorTickLength |
1 | 2 | [[#18fafd40]] | setMinorTickLength |
2 | 1 | [[#18fafc20]] | majorTickLength |
2 | 2 | [[#18fafc20]] | minorTickLength |