CloneSet25


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
331320.958class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13377
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/experimental/org/jfree/experimental/chart/util/XYCoordinateType.java
23475
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/CategoryAnchor.java
33475
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/DateTickMarkPosition.java
43374
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/LengthConstraintType.java
53374
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/event/ChartChangeEventType.java
63370
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/LegendRenderingOrder.java
73380
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DatasetRenderingOrder.java
83373
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DialShape.java
93374
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PieLabelLinkStyle.java
103372
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PlotOrientation.java
113378
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/SeriesRenderingOrder.java
123473
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DomainOrder.java
133474
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/RangeType.java
Next
Last
Clone Instance
1
Line Count
33
Source Line
77
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/experimental/org/jfree/experimental/chart/util/XYCoordinateType.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private XYCoordinateType(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof XYCoordinateType)) {
    return false;
  }
  XYCoordinateType order = (XYCoordinateType) obj;
  if ( !this.name.equals(order.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
2
Line Count
34
Source Line
75
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/CategoryAnchor.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private CategoryAnchor(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof CategoryAnchor)) {
    return false;
  }
  CategoryAnchor position = (CategoryAnchor) obj;
  if ( !this.name.equals(position.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
3
Line Count
34
Source Line
75
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/DateTickMarkPosition.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private DateTickMarkPosition(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof DateTickMarkPosition)) {
    return false;
  }
  DateTickMarkPosition position = (DateTickMarkPosition) obj;
  if ( !this.name.equals(position.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
4
Line Count
33
Source Line
74
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/LengthConstraintType.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private LengthConstraintType(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof LengthConstraintType)) {
    return false;
  }
  LengthConstraintType that = (LengthConstraintType) obj;
  if ( !this.name.equals(that.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
5
Line Count
33
Source Line
74
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/event/ChartChangeEventType.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private ChartChangeEventType(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof ChartChangeEventType)) {
    return false;
  }
  ChartChangeEventType that = (ChartChangeEventType) obj;
  if ( !this.name.equals(that.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
6
Line Count
33
Source Line
70
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/LegendRenderingOrder.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private LegendRenderingOrder(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof LegendRenderingOrder)) {
    return false;
  }
  LegendRenderingOrder order = (LegendRenderingOrder) obj;
  if ( !this.name.equals(order.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
7
Line Count
33
Source Line
80
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DatasetRenderingOrder.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private DatasetRenderingOrder(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string (never <code>null</code>).
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof DatasetRenderingOrder)) {
    return false;
  }
  DatasetRenderingOrder order = (DatasetRenderingOrder) obj;
  if ( !this.name.equals(order.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
8
Line Count
33
Source Line
73
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DialShape.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private DialShape(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof DialShape)) {
    return false;
  }
  DialShape shape = (DialShape) obj;
  if ( !this.name.equals(shape.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
9
Line Count
33
Source Line
74
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PieLabelLinkStyle.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private PieLabelLinkStyle(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof PieLabelLinkStyle)) {
    return false;
  }
  PieLabelLinkStyle style = (PieLabelLinkStyle) obj;
  if ( !this.name.equals(style.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
10
Line Count
33
Source Line
72
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/PlotOrientation.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private PlotOrientation(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof PlotOrientation)) {
    return false;
  }
  PlotOrientation orientation = (PlotOrientation) obj;
  if ( !this.name.equals(orientation.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
11
Line Count
33
Source Line
78
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/SeriesRenderingOrder.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private SeriesRenderingOrder(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string (never <code>null</code>).
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof SeriesRenderingOrder)) {
    return false;
  }
  SeriesRenderingOrder order = (SeriesRenderingOrder) obj;
  if ( !this.name.equals(order.toString())) {
    return false;
  }
  return true;
}


Next
Previous
Clone Instance
12
Line Count
34
Source Line
73
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DomainOrder.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private DomainOrder(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof DomainOrder)) {
    return false;
  }
  DomainOrder that = (DomainOrder) obj;
  if ( !this.name.equals(that.toString())) {
    return false;
  }
  return true;
}


First
Previous
Clone Instance
13
Line Count
34
Source Line
74
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/RangeType.java

/**
 * Private constructor.
 *
 * @param name  the name.
 */
private RangeType(String name) {
  this.name = name;
}

/**
 * Returns a string representing the object.
 *
 * @return The string.
 */
public String toString() {
  return this.name;
}

/**
 * Returns <code>true</code> if this object is equal to the specified 
 * object, and <code>false</code> otherwise.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof RangeType)) {
    return false;
  }
  RangeType that = (RangeType) obj;
  if ( !this.name.equals(that.toString())) {
    return false;
  }
  return true;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Private constructor.
     *
     * @param name  the name.
     */
/**
     * Private constructor.
     *
     * @param name  the name.
     */
private [[#variable15028e00]](String name) {
  this.name = name;
}

/**
     * Returns a string representing the object.
     *
     * @return The string.
     */
/**
     * Returns a string representing the object.
     *
     * @return The string (never <code>null</code>).
     */
/**
     * Returns a string representing the object.
     *
     * @return The string.
     */
public String toString() {
  return this.name;
}

/**
     * Returns <code>true</code> if this object is equal to the specified 
     * object, and <code>false</code> otherwise.
     *
     * @param obj  the other object.
     *
     * @return A boolean.
     */
/**
     * Returns <code>true</code> if this object is equal to the specified 
     * object, and <code>false</code> otherwise.
     *
     * @param obj  the object (<code>null</code> permitted).
     *
     * @return A boolean.
     */
/**
     * Returns <code>true</code> if this object is equal to the specified
     * object, and <code>false</code> otherwise.
     *
     * @param obj  the object (<code>null</code> permitted).
     *
     * @return A boolean.
     */
/**
     * Returns <code>true</code> if this object is equal to the specified 
     * object, and <code>false</code> otherwise.
     *
     * @param obj  the other object.
     *
     * @return A boolean.
     */
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if ( !(obj instanceof [[#variable15028e00]])) {
    return false;
  }
   [[#variable15028e00]]  [[#variable15029420]]= ( [[#variable15028e00]]) obj;
  if ( !this.name.equals( [[#variable15029420]].toString())) {
    return false;
  }
  return true;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#15028e00]]
XYCoordinateType 
12[[#15028e00]]
CategoryAnchor 
13[[#15028e00]]
DateTickMarkPosition 
14[[#15028e00]]
LengthConstraintType 
15[[#15028e00]]
ChartChangeEventType 
16[[#15028e00]]
LegendRenderingOrder 
17[[#15028e00]]
DatasetRenderingOrder 
18[[#15028e00]]
DialShape 
19[[#15028e00]]
PieLabelLinkStyle 
110[[#15028e00]]
PlotOrientation 
111[[#15028e00]]
SeriesRenderingOrder 
112[[#15028e00]]
DomainOrder 
113[[#15028e00]]
RangeType 
21[[#15029420]]
order 
22[[#15029420]]
position 
23[[#15029420]]
position 
24[[#15029420]]
that 
25[[#15029420]]
that 
26[[#15029420]]
order 
27[[#15029420]]
order 
28[[#15029420]]
shape 
29[[#15029420]]
style 
210[[#15029420]]
orientation 
211[[#15029420]]
order 
212[[#15029420]]
that 
213[[#15029420]]
that