CloneSet1093


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
29201.000class_body_declarations[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
129703
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java
229779
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.java
Next
Last
Clone Instance
1
Line Count
29
Source Line
703
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java

/**
 * A flag that indicates if the last (x, y) point was 'good'
 * (non-null).
 */
private boolean lastPointGood;

/**
 * Creates a new state instance.
 *
 * @param info  the plot rendering info.
 */
public State(PlotRenderingInfo info) {
  super(info);
}

/**
 * Returns a flag that indicates if the last point drawn (in the
 * current series) was 'good' (non-null).
 *
 * @return A boolean.
 */
public boolean isLastPointGood() {
  return this.lastPointGood;
}

/**
 * Sets a flag that indicates if the last point drawn (in the current
 * series) was 'good' (non-null).
 *
 * @param good  the flag.
 */
public void setLastPointGood(boolean good) {
  this.lastPointGood = good;
}


First
Previous
Clone Instance
2
Line Count
29
Source Line
779
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.java

/**
 * A flag that indicates if the last (x, y) point was 'good'
 * (non-null).
 */
private boolean lastPointGood;

/**
 * Creates a new state instance.
 *
 * @param info  the plot rendering info.
 */
public State(PlotRenderingInfo info) {
  super(info);
}

/**
 * Returns a flag that indicates if the last point drawn (in the
 * current series) was 'good' (non-null).
 *
 * @return A boolean.
 */
public boolean isLastPointGood() {
  return this.lastPointGood;
}

/**
 * Sets a flag that indicates if the last point drawn (in the current
 * series) was 'good' (non-null).
 *
 * @param good  the flag.
 */
public void setLastPointGood(boolean good) {
  this.lastPointGood = good;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
         * A flag that indicates if the last (x, y) point was 'good'
         * (non-null).
         */
private boolean lastPointGood;

/**
         * Creates a new state instance.
         *
         * @param info  the plot rendering info.
         */
public State(PlotRenderingInfo info) {
  super(info);
}

/**
         * Returns a flag that indicates if the last point drawn (in the
         * current series) was 'good' (non-null).
         *
         * @return A boolean.
         */
public boolean isLastPointGood() {
  return this.lastPointGood;
}

/**
         * Sets a flag that indicates if the last point drawn (in the current
         * series) was 'good' (non-null).
         *
         * @param good  the flag.
         */
public void setLastPointGood(boolean good) {
  this.lastPointGood = good;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None