CloneSet191


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
20620.959class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12084
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java
220118
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java
320104
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYItemLabelGenerator.java
420140
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYItemLabelGenerator.java
52195
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYToolTipGenerator.java
619133
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYToolTipGenerator.java
Next
Last
Clone Instance
1
Line Count
20
Source Line
84
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java

/**
 * Creates an item label generator using the specified number formatters.
 *
 * @param formatString  the item label format string (<code>null</code> not
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code>
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code>
 *                 not permitted).
 */
public IntervalXYItemLabelGenerator(String formatString, NumberFormat xFormat, NumberFormat yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
 * Creates an item label generator using the specified formatters.
 *
 * @param formatString  the item label format string (<code>null</code>
 *                      not permitted).
 * @param xFormat  the format object for the x values (<code>null</code>
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code>
 *                 not permitted).
 */
public IntervalXYItemLabelGenerator(String formatString, DateFormat xFormat, NumberFormat yFormat) {
  super(formatString, xFormat, yFormat);
}


Next
Previous
Clone Instance
2
Line Count
20
Source Line
118
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java

/**
 * Creates an item label generator using the specified formatters (a
 * number formatter for the x-values and a date formatter for the
 * y-values).
 *
 * @param formatString  the item label format string (<code>null</code>
 *                      not permitted).
 * @param xFormat  the format object for the x values (<code>null</code>
 *                 permitted).
 * @param yFormat  the format object for the y values (<code>null</code>
 *                 not permitted).
 */
public IntervalXYItemLabelGenerator(String formatString, NumberFormat xFormat, DateFormat yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
 * Creates a label generator using the specified date formatters.
 *
 * @param formatString  the label format string (<code>null</code> not
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code>
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code>
 *                 not permitted).
 */
public IntervalXYItemLabelGenerator(String formatString, DateFormat xFormat, DateFormat yFormat) {
  super(formatString, xFormat, yFormat);
}


Next
Previous
Clone Instance
3
Line Count
20
Source Line
104
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYItemLabelGenerator.java

/**
 * Creates an item label generator using the specified number formatters.
 *
 * @param formatString  the item label format string (<code>null</code> not 
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 */
public StandardXYItemLabelGenerator(String formatString, NumberFormat xFormat, NumberFormat yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
 * Creates an item label generator using the specified formatters.
 *
 * @param formatString  the item label format string (<code>null</code> 
 *                      not permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 */
public StandardXYItemLabelGenerator(String formatString, DateFormat xFormat, NumberFormat yFormat) {
  super(formatString, xFormat, yFormat);
}


Next
Previous
Clone Instance
4
Line Count
20
Source Line
140
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYItemLabelGenerator.java

/**
 * Creates an item label generator using the specified formatters (a 
 * number formatter for the x-values and a date formatter for the 
 * y-values).
 *
 * @param formatString  the item label format string (<code>null</code> 
 *                      not permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 *                 
 * @since 1.0.4
 */
public StandardXYItemLabelGenerator(String formatString, NumberFormat xFormat, DateFormat yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
 * Creates a label generator using the specified date formatters.
 *
 * @param formatString  the label format string (<code>null</code> not 
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 */
public StandardXYItemLabelGenerator(String formatString, DateFormat xFormat, DateFormat yFormat) {
  super(formatString, xFormat, yFormat);
}


Next
Previous
Clone Instance
5
Line Count
21
Source Line
95
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYToolTipGenerator.java

/**
 * Creates a tool tip generator using the specified number formatters.
 *
 * @param formatString  the item label format string (<code>null</code> not
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 */
public StandardXYToolTipGenerator(String formatString, NumberFormat xFormat, NumberFormat yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
 * Creates a tool tip generator using the specified number formatters.
 *
 * @param formatString  the label format string (<code>null</code> not 
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 */
public StandardXYToolTipGenerator(String formatString, DateFormat xFormat, NumberFormat yFormat) {
  super(formatString, xFormat, yFormat);
}


First
Previous
Clone Instance
6
Line Count
19
Source Line
133
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYToolTipGenerator.java

/**
 * Creates a tool tip generator using the specified formatters (a 
 * number formatter for the x-values and a date formatter for the 
 * y-values).
 *
 * @param formatString  the item label format string (<code>null</code> 
 *                      not permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 *                 
 * @since 1.0.4
 */
public StandardXYToolTipGenerator(String formatString, NumberFormat xFormat, DateFormat yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
 * Creates a tool tip generator using the specified date formatters.
 *
 * @param formatString  the label format string (<code>null</code> not 
 *                      permitted).
 * @param xFormat  the format object for the x values (<code>null</code> 
 *                 not permitted).
 * @param yFormat  the format object for the y values (<code>null</code> 
 *                 not permitted).
 */
public StandardXYToolTipGenerator(String formatString, DateFormat xFormat, DateFormat yFormat) {
  super(formatString, xFormat, yFormat);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Creates an item label generator using the specified formatters (a
     * number formatter for the x-values and a date formatter for the
     * y-values).
     *
     * @param formatString  the item label format string (<code>null</code>
     *                      not permitted).
     * @param xFormat  the format object for the x values (<code>null</code>
     *                 permitted).
     * @param yFormat  the format object for the y values (<code>null</code>
     *                 not permitted).
     */
/**
     * Creates an item label generator using the specified number formatters.
     *
     * @param formatString  the item label format string (<code>null</code> not
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code>
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code>
     *                 not permitted).
     */
/**
     * Creates an item label generator using the specified formatters (a 
     * number formatter for the x-values and a date formatter for the 
     * y-values).
     *
     * @param formatString  the item label format string (<code>null</code> 
     *                      not permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     *                 
     * @since 1.0.4
     */
/**
     * Creates an item label generator using the specified number formatters.
     *
     * @param formatString  the item label format string (<code>null</code> not 
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     */
/**
     * Creates a tool tip generator using the specified number formatters.
     *
     * @param formatString  the item label format string (<code>null</code> not
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     */
/**
     * Creates a tool tip generator using the specified formatters (a 
     * number formatter for the x-values and a date formatter for the 
     * y-values).
     *
     * @param formatString  the item label format string (<code>null</code> 
     *                      not permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     *                 
     * @since 1.0.4
     */
public [[#variable1aafc120]](String formatString, NumberFormat xFormat, [[#variable1aafc020]] yFormat) {
  super(formatString, xFormat, yFormat);
}

/**
     * Creates a label generator using the specified date formatters.
     *
     * @param formatString  the label format string (<code>null</code> not
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code>
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code>
     *                 not permitted).
     */
/**
     * Creates an item label generator using the specified formatters.
     *
     * @param formatString  the item label format string (<code>null</code>
     *                      not permitted).
     * @param xFormat  the format object for the x values (<code>null</code>
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code>
     *                 not permitted).
     */
/**
     * Creates a label generator using the specified date formatters.
     *
     * @param formatString  the label format string (<code>null</code> not 
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     */
/**
     * Creates an item label generator using the specified formatters.
     *
     * @param formatString  the item label format string (<code>null</code> 
     *                      not permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     */
/**
     * Creates a tool tip generator using the specified number formatters.
     *
     * @param formatString  the label format string (<code>null</code> not 
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     */
/**
     * Creates a tool tip generator using the specified date formatters.
     *
     * @param formatString  the label format string (<code>null</code> not 
     *                      permitted).
     * @param xFormat  the format object for the x values (<code>null</code> 
     *                 not permitted).
     * @param yFormat  the format object for the y values (<code>null</code> 
     *                 not permitted).
     */
public [[#variable1aafc120]](String formatString, DateFormat xFormat, [[#variable1aafc020]] yFormat) {
  super(formatString, xFormat, yFormat);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1aafc120]]
IntervalXYItemLabelGenerator 
12[[#1aafc120]]
IntervalXYItemLabelGenerator 
13[[#1aafc120]]
StandardXYItemLabelGenerator 
14[[#1aafc120]]
StandardXYItemLabelGenerator 
15[[#1aafc120]]
StandardXYToolTipGenerator 
16[[#1aafc120]]
StandardXYToolTipGenerator 
21[[#1aafc020]]
NumberFormat 
22[[#1aafc020]]
DateFormat 
23[[#1aafc020]]
NumberFormat 
24[[#1aafc020]]
DateFormat 
25[[#1aafc020]]
NumberFormat 
26[[#1aafc020]]
DateFormat