CloneSet235


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6920.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16399
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java
26523
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java
36642
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java
46805
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java
56141
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ExtendedCategoryAxis.java
66431
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java
76162
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SubCategoryAxis.java
86224
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SymbolAxis.java
96257
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SymbolAxis.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
399
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java

/**
 * Sets the paint used to draw the axis label and sends an
 * {@link AxisChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getLabelPaint()
 */
public void setLabelPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.labelPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint used to draw the axis line and sends an
 * {@link AxisChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getAxisLinePaint()
 */
public void setAxisLinePaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.axisLinePaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint used to draw tick labels (if they are showing) and
 * sends an {@link AxisChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getTickLabelPaint()
 */
public void setTickLabelPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.tickLabelPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint used to draw tick marks and sends an
 * {@link AxisChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getTickMarkPaint()
 */
public void setTickMarkPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.tickMarkPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint for the sublabels and sends an {@link AxisChangeEvent}
 * to all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getSubLabelPaint()
 */
public void setSubLabelPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.sublabelPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint used to display minor tick marks, if they are 
 * visible, and sends a {@link AxisChangeEvent} to all registered 
 * listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setMinorTickMarkPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.minorTickMarkPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint used to display the sub-category labels and sends an 
 * {@link AxisChangeEvent} to all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getSubLabelPaint()
 */
public void setSubLabelPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.subLabelPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the grid band paint and sends an {@link AxisChangeEvent} to 
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getGridBandPaint()
 */
public void setGridBandPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.gridBandPaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the paint used for alternate grid bands and sends a 
 * {@link AxisChangeEvent} to all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getGridBandAlternatePaint()
 * @see #setGridBandPaint(Paint)
 * 
 * @since 1.0.7
 */
public void setGridBandAlternatePaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.gridBandAlternatePaint = paint;
  notifyListeners(new AxisChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the paint used to draw tick marks and sends an
     * {@link AxisChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getTickMarkPaint()
     */
/**
     * Sets the paint used to draw tick labels (if they are showing) and
     * sends an {@link AxisChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getTickLabelPaint()
     */
/**
     * Sets the paint used to draw the axis line and sends an
     * {@link AxisChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getAxisLinePaint()
     */
/**
     * Sets the paint used to draw the axis label and sends an
     * {@link AxisChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getLabelPaint()
     */
/**
     * Sets the paint for the sublabels and sends an {@link AxisChangeEvent}
     * to all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getSubLabelPaint()
     */
/**
     * Sets the paint used to display minor tick marks, if they are 
     * visible, and sends a {@link AxisChangeEvent} to all registered 
     * listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     */
/**
     * Sets the paint used to display the sub-category labels and sends an 
     * {@link AxisChangeEvent} to all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getSubLabelPaint()
     */
/**
     * Sets the paint used for alternate grid bands and sends a 
     * {@link AxisChangeEvent} to all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getGridBandAlternatePaint()
     * @see #setGridBandPaint(Paint)
     * 
     * @since 1.0.7
     */
/**
     * Sets the grid band paint and sends an {@link AxisChangeEvent} to 
     * all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getGridBandPaint()
     */
public void [[#variable1a8978a0]](Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this. [[#variable1a897880]]= paint;
  notifyListeners(new AxisChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8978a0]]
setLabelPaint 
12[[#1a8978a0]]
setAxisLinePaint 
13[[#1a8978a0]]
setTickLabelPaint 
14[[#1a8978a0]]
setTickMarkPaint 
15[[#1a8978a0]]
setSubLabelPaint 
16[[#1a8978a0]]
setMinorTickMarkPaint 
17[[#1a8978a0]]
setSubLabelPaint 
18[[#1a8978a0]]
setGridBandPaint 
19[[#1a8978a0]]
setGridBandAlternatePaint 
21[[#1a897880]]
labelPaint 
22[[#1a897880]]
axisLinePaint 
23[[#1a897880]]
tickLabelPaint 
24[[#1a897880]]
tickMarkPaint 
25[[#1a897880]]
sublabelPaint 
26[[#1a897880]]
minorTickMarkPaint 
27[[#1a897880]]
subLabelPaint 
28[[#1a897880]]
gridBandPaint 
29[[#1a897880]]
gridBandAlternatePaint