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 | 550 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java |
2 | 6 | 406 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java |
| |||||
/** * Sets the stroke used to draw the axis line and sends an * {@link AxisChangeEvent} to all registered listeners. * * @param stroke the stroke (<code>null</code> not permitted). * * @see #getAxisLineStroke() */ public void setAxisLineStroke(Stroke stroke) { if (stroke == null) { throw new IllegalArgumentException("Null \'stroke\' argument."); } this.axisLineStroke = stroke; notifyListeners(new AxisChangeEvent(this )); } |
| |||||
/** * Sets the stroke used to display minor tick marks, if they are * visible, and sends a {@link AxisChangeEvent} to all registered * listeners. * * @param stroke the stroke (<code>null</code> not permitted). */ public void setMinorTickMarkStroke(Stroke stroke) { if (stroke == null) { throw new IllegalArgumentException("Null \'stroke\' argument."); } this.minorTickMarkStroke = stroke; notifyListeners(new AxisChangeEvent(this )); } |
| |||
/** * Sets the stroke used to draw the axis line and sends an * {@link AxisChangeEvent} to all registered listeners. * * @param stroke the stroke (<code>null</code> not permitted). * * @see #getAxisLineStroke() */ /** * Sets the stroke used to display minor tick marks, if they are * visible, and sends a {@link AxisChangeEvent} to all registered * listeners. * * @param stroke the stroke (<code>null</code> not permitted). */ public void [[#variable18f957c0]](Stroke stroke) { if (stroke == null) { throw new IllegalArgumentException("Null \'stroke\' argument."); } this. [[#variable18f95740]]= stroke; notifyListeners(new AxisChangeEvent(this )); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18f957c0]] | setAxisLineStroke |
1 | 2 | [[#18f957c0]] | setMinorTickMarkStroke |
2 | 1 | [[#18f95740]] | axisLineStroke |
2 | 2 | [[#18f95740]] | minorTickMarkStroke |