CloneSet1270


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3210.985method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13185
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/HashUtilities.java
23200
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/HashUtilities.java
Next
Last
Clone Instance
1
Line Count
3
Source Line
185
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/HashUtilities.java

/**
 * Returns a hash value based on a seed value and a stroke instance.
 * 
 * @param pre  the seed value.
 * @param s  the stroke (<code>null</code> permitted).
 * 
 * @return A hash value.
 * 
 * @since 1.0.7
 */
public static int hashCode(int pre, Stroke s) {
  int h = (s != null ? s.hashCode(): 0);
  return 37 * pre + h;
}


First
Previous
Clone Instance
2
Line Count
3
Source Line
200
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/HashUtilities.java

/**
 * Returns a hash value based on a seed value and a string instance.
 * 
 * @param pre  the seed value.
 * @param s  the string (<code>null</code> permitted).
 * 
 * @return A hash value.
 * 
 * @since 1.0.7
 */
public static int hashCode(int pre, String s) {
  int h = (s != null ? s.hashCode(): 0);
  return 37 * pre + h;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns a hash value based on a seed value and a string instance.
     * 
     * @param pre  the seed value.
     * @param s  the string (<code>null</code> permitted).
     * 
     * @return A hash value.
     * 
     * @since 1.0.7
     */
/**
     * Returns a hash value based on a seed value and a stroke instance.
     * 
     * @param pre  the seed value.
     * @param s  the stroke (<code>null</code> permitted).
     * 
     * @return A hash value.
     * 
     * @since 1.0.7
     */
public static int hashCode(int pre, [[#variable18ef6240]] s) {
  int h = (s != null ? s.hashCode(): 0);
  return 37 * pre + h;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ef6240]]
Stroke 
12[[#18ef6240]]
String