CloneSet771


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17220.961class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1173294
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java
2183322
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java
Next
Last
Clone Instance
1
Line Count
17
Source Line
3294
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java

// DEPRECATED METHODS...
/**
 * Returns the paint for the specified section.
 * 
 * @param section  the section index (zero-based).
 * 
 * @return The paint (never <code>null</code>).
 * 
 * @deprecated Use {@link #getSectionPaint(Comparable)} instead.
 */
public Paint getSectionPaint(int section) {
  Comparable key = getSectionKey(section);
  return getSectionPaint(key);
}

/**
 * Sets the paint used to fill a section of the pie and sends a 
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param section  the section index (zero-based).
 * @param paint  the paint (<code>null</code> permitted).
 * 
 * @deprecated Use {@link #setSectionPaint(Comparable, Paint)} instead.
 */
public void setSectionPaint(int section, Paint paint) {
  Comparable key = getSectionKey(section);
  setSectionPaint(key, paint);
}


First
Previous
Clone Instance
2
Line Count
18
Source Line
3322
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PiePlot.java

/**
 * Returns the paint for the specified section.
 * 
 * @param section  the section index (zero-based).
 * 
 * @return The paint (possibly <code>null</code>).
 * 
 * @deprecated Use {@link #getSectionOutlinePaint(Comparable)} instead.
 */
public Paint getSectionOutlinePaint(int section) {
  Comparable key = getSectionKey(section);
  return getSectionOutlinePaint(key);
}

/**
 * Sets the paint used to fill a section of the pie and sends a 
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param section  the section index (zero-based).
 * @param paint  the paint (<code>null</code> permitted).
 * 
 * @deprecated Use {@link #setSectionOutlinePaint(Comparable, Paint)} 
 *     instead.
 */
public void setSectionOutlinePaint(int section, Paint paint) {
  Comparable key = getSectionKey(section);
  setSectionOutlinePaint(key, paint);
}


Clone AbstractionParameter Count: 2Parameter Bindings

// DEPRECATED METHODS...
/**
     * Returns the paint for the specified section.
     * 
     * @param section  the section index (zero-based).
     * 
     * @return The paint (never <code>null</code>).
     * 
     * @deprecated Use {@link #getSectionPaint(Comparable)} instead.
     */
/**
     * Returns the paint for the specified section.
     * 
     * @param section  the section index (zero-based).
     * 
     * @return The paint (possibly <code>null</code>).
     * 
     * @deprecated Use {@link #getSectionOutlinePaint(Comparable)} instead.
     */
public Paint  [[#variable18d4f220]](int section) {
  Comparable key = getSectionKey(section);
  return [[#variable18d4f220]](key);
}

/**
     * Sets the paint used to fill a section of the pie and sends a 
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param section  the section index (zero-based).
     * @param paint  the paint (<code>null</code> permitted).
     * 
     * @deprecated Use {@link #setSectionPaint(Comparable, Paint)} instead.
     */
/**
     * Sets the paint used to fill a section of the pie and sends a 
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param section  the section index (zero-based).
     * @param paint  the paint (<code>null</code> permitted).
     * 
     * @deprecated Use {@link #setSectionOutlinePaint(Comparable, Paint)} 
     *     instead.
     */
public void [[#variable18d4f140]](int section, Paint paint) {
  Comparable key = getSectionKey(section);
   [[#variable18d4f140]](key, paint);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d4f220]]
getSectionPaint 
12[[#18d4f220]]
getSectionOutlinePaint 
21[[#18d4f140]]
setSectionPaint 
22[[#18d4f140]]
setSectionOutlinePaint