CloneSet1169


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
20210.986class_body_declarations[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12063
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/ComparableObjectSeries.java
220104
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeries.java
Next
Last
Clone Instance
1
Line Count
20
Source Line
63
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/ComparableObjectSeries.java

/** Storage for the data items in the series. */
protected List data;

/** The maximum number of items for the series. */
private int maximumItemCount = Integer.MAX_VALUE;

/** A flag that controls whether the items are automatically sorted. */
private boolean autoSort;

/** A flag that controls whether or not duplicate x-values are allowed. */
private boolean allowDuplicateXValues;

/**
 * Creates a new empty series.  By default, items added to the series will 
 * be sorted into ascending order by x-value, and duplicate x-values will 
 * be allowed (these defaults can be modified with another constructor.
 *
 * @param key  the series key (<code>null</code> not permitted).
 */
public ComparableObjectSeries(Comparable key) {
  this(key, true, true);
}


First
Previous
Clone Instance
2
Line Count
20
Source Line
104
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeries.java

// In version 0.9.12, in response to several developer requests, I changed
// the 'data' attribute from 'private' to 'protected', so that others can
// make subclasses that work directly with the underlying data structure.
/** Storage for the data items in the series. */
protected List data;

/** The maximum number of items for the series. */
private int maximumItemCount = Integer.MAX_VALUE;

/** A flag that controls whether the items are automatically sorted. */
private boolean autoSort;

/** A flag that controls whether or not duplicate x-values are allowed. */
private boolean allowDuplicateXValues;

/**
 * Creates a new empty series.  By default, items added to the series will
 * be sorted into ascending order by x-value, and duplicate x-values will
 * be allowed (these defaults can be modified with another constructor.
 *
 * @param key  the series key (<code>null</code> not permitted).
 */
public XYSeries(Comparable key) {
  this(key, true, true);
}


Clone AbstractionParameter Count: 1Parameter Bindings

// In version 0.9.12, in response to several developer requests, I changed
// the 'data' attribute from 'private' to 'protected', so that others can
// make subclasses that work directly with the underlying data structure.
/** Storage for the data items in the series. */
protected List data;

/** The maximum number of items for the series. */
private int maximumItemCount = Integer.MAX_VALUE;

/** A flag that controls whether the items are automatically sorted. */
private boolean autoSort;

/** A flag that controls whether or not duplicate x-values are allowed. */
private boolean allowDuplicateXValues;

/**
     * Creates a new empty series.  By default, items added to the series will 
     * be sorted into ascending order by x-value, and duplicate x-values will 
     * be allowed (these defaults can be modified with another constructor.
     *
     * @param key  the series key (<code>null</code> not permitted).
     */
/**
     * Creates a new empty series.  By default, items added to the series will
     * be sorted into ascending order by x-value, and duplicate x-values will
     * be allowed (these defaults can be modified with another constructor.
     *
     * @param key  the series key (<code>null</code> not permitted).
     */
public [[#variable18eae080]](Comparable key) {
  this(key, true, true);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18eae080]]
ComparableObjectSeries 
12[[#18eae080]]
XYSeries