CloneSet272


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11820.964interface_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11173
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java
21194
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java
311115
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java
41176
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java
51197
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java
611118
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java
711139
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java
813103
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYDataset.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
73
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java

/**
 * Returns the start x-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 * 
 * @return The start x-value.
 */
public double getStartXValue(int series, int item);
/**
 * Returns the ending X value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getEndX(int series, int item);


Next
Previous
Clone Instance
2
Line Count
11
Source Line
94
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java

/**
 * Returns the end x-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 * 
 * @return The end x-value.
 */
public double getEndXValue(int series, int item);
/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getStartY(int series, int item);


Next
Previous
Clone Instance
3
Line Count
11
Source Line
115
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java

/**
 * Returns the start y-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 * 
 * @return The start y-value.
 */
public double getStartYValue(int series, int item);
/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getEndY(int series, int item);


Next
Previous
Clone Instance
4
Line Count
11
Source Line
76
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java

/**
 * Returns the high-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 * 
 * @return The high-value.
 */
public double getHighValue(int series, int item);
/**
 * Returns the low-value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The value.
 */
public Number getLow(int series, int item);


Next
Previous
Clone Instance
5
Line Count
11
Source Line
97
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java

/**
 * Returns the low-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 * 
 * @return The low-value.
 */
public double getLowValue(int series, int item);
/**
 * Returns the open-value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The value.
 */
public Number getOpen(int series, int item);


Next
Previous
Clone Instance
6
Line Count
11
Source Line
118
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java

/**
 * Returns the open-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 * 
 * @return The open-value.
 */
public double getOpenValue(int series, int item);
/**
 * Returns the y-value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The value.
 */
public Number getClose(int series, int item);


Next
Previous
Clone Instance
7
Line Count
11
Source Line
139
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java

/**
 * Returns the close-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 * 
 * @return The close-value.
 */
public double getCloseValue(int series, int item);
/**
 * Returns the volume for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The value.
 */
public Number getVolume(int series, int item);


First
Previous
Clone Instance
8
Line Count
13
Source Line
103
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYDataset.java

/**
 * Returns the x-value for an item within a series.
 * 
 * @param series  the series index (in the range <code>0</code> to 
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to 
 *     <code>getItemCount(series)</code>).
 * 
 * @return The x-value.
 */
public double getXValue(int series, int item);
/**
 * Returns the y-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to 
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to 
 *     <code>getItemCount(series)</code>).
 *
 * @return The y-value (possibly <code>null</code>).
 */
public Number getY(int series, int item);


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the high-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     * 
     * @return The high-value.
     */
/**
     * Returns the low-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     * 
     * @return The low-value.
     */
/**
     * Returns the start x-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     * 
     * @return The start x-value.
     */
/**
     * Returns the open-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     * 
     * @return The open-value.
     */
/**
     * Returns the end x-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     * 
     * @return The end x-value.
     */
/**
     * Returns the x-value for an item within a series.
     * 
     * @param series  the series index (in the range <code>0</code> to 
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to 
     *     <code>getItemCount(series)</code>).
     * 
     * @return The x-value.
     */
/**
     * Returns the close-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     * 
     * @return The close-value.
     */
/**
     * Returns the start y-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     * 
     * @return The start y-value.
     */
public double  [[#variable1a8c44c0]](int series, int item);
/**
     * Returns the low-value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The value.
     */
/**
     * Returns the open-value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The value.
     */
/**
     * Returns the ending X value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the y-value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The value.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the y-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to 
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to 
     *     <code>getItemCount(series)</code>).
     *
     * @return The y-value (possibly <code>null</code>).
     */
/**
     * Returns the volume for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The value.
     */
/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
public Number  [[#variable1a8c4440]](int series, int item);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8c44c0]]
getStartXValue 
12[[#1a8c44c0]]
getEndXValue 
13[[#1a8c44c0]]
getStartYValue 
14[[#1a8c44c0]]
getHighValue 
15[[#1a8c44c0]]
getLowValue 
16[[#1a8c44c0]]
getOpenValue 
17[[#1a8c44c0]]
getCloseValue 
18[[#1a8c44c0]]
getXValue 
21[[#1a8c4440]]
getEndX 
22[[#1a8c4440]]
getStartY 
23[[#1a8c4440]]
getEndY 
24[[#1a8c4440]]
getLow 
25[[#1a8c4440]]
getOpen 
26[[#1a8c4440]]
getClose 
27[[#1a8c4440]]
getVolume 
28[[#1a8c4440]]
getY