CloneSet1640


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

/**
 * Returns a flag that controls whether or not a border is drawn.
 *
 * @return The flag.
 * 
 * @see #setDrawBorder(boolean)
 */
public boolean getDrawBorder() {
  return this.drawBorder;
}

/**
 * Sets a flag that controls whether or not a border is drawn.
 *
 * @param status  the flag status.
 * 
 * @see #getDrawBorder()
 */
public void setDrawBorder(boolean status) {
  this.drawBorder = status;
  fireChangeEvent();
}


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

/**
 * Returns a flag that controls whether or not a rectangular border is 
 * drawn around the plot area.
 *
 * @return A flag.
 * 
 * @see #setDrawBorder(boolean)
 */
public boolean getDrawBorder() {
  return this.drawBorder;
}

/**
 * Sets the flag that controls whether or not a rectangular border is drawn
 * around the plot area and sends a {@link PlotChangeEvent} to all 
 * registered listeners.
 *
 * @param draw  the flag.
 * 
 * @see #getDrawBorder()
 */
public void setDrawBorder(boolean draw) {
  // TODO: fix output when this flag is set to true
  this.drawBorder = draw;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns a flag that controls whether or not a rectangular border is 
     * drawn around the plot area.
     *
     * @return A flag.
     * 
     * @see #setDrawBorder(boolean)
     */
/**
     * Returns a flag that controls whether or not a border is drawn.
     *
     * @return The flag.
     * 
     * @see #setDrawBorder(boolean)
     */
public boolean getDrawBorder() {
  return this.drawBorder;
}

/**
     * Sets the flag that controls whether or not a rectangular border is drawn
     * around the plot area and sends a {@link PlotChangeEvent} to all 
     * registered listeners.
     *
     * @param draw  the flag.
     * 
     * @see #getDrawBorder()
     */
/**
     * Sets a flag that controls whether or not a border is drawn.
     *
     * @param status  the flag status.
     * 
     * @see #getDrawBorder()
     */
public void setDrawBorder(boolean  [[#variable1a00d9c0]]) {
  // TODO: fix output when this flag is set to true
  this.drawBorder = [[#variable1a00d9c0]];
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a00d9c0]]
status 
12[[#1a00d9c0]]
draw