CloneSet84


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10820.957class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11046
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/AntTypeDefinition.java
212159
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Target.java
310771
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Ant.java
41085
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Apt.java
51048
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/GenerateKey.java
61192
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java
711144
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java
810722
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java
Next
Last
Clone Instance
1
Line Count
10
Source Line
46
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/AntTypeDefinition.java

/**
 * Set the definition's name.
 * @param name the name of the definition.
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Return the definition's name.
 * @return the name of the definition.
 */
public String getName() {
  return name;
}


Next
Previous
Clone Instance
2
Line Count
12
Source Line
159
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Target.java

/**
 * Sets the name of this target.
 *
 * @param name The name of this target. Should not be <code>null</code>.
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Returns the name of this target.
 *
 * @return the name of this target, or <code>null</code> if the
 *         name has not been set yet.
 */
public String getName() {
  return name;
}


Next
Previous
Clone Instance
3
Line Count
10
Source Line
771
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Ant.java

/**
 * Set the name of this TargetElement.
 * @param name   the <code>String</code> target name.
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Get the name of this TargetElement.
 * @return <code>String</code>.
 */
public String getName() {
  return name;
}


Next
Previous
Clone Instance
4
Line Count
10
Source Line
85
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Apt.java

/**
 * Set the name attribute.
 * @param name the name of the option.
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Get the value attribute.
 * @return the value attribute.
 */
public String getValue() {
  return value;
}


Next
Previous
Clone Instance
5
Line Count
10
Source Line
48
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/GenerateKey.java

/**
 * Set the name attribute.
 * @param name a <code>String</code> value
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Get the name attribute.
 * @return the name.
 */
public String getName() {
  return name;
}


Next
Previous
Clone Instance
6
Line Count
11
Source Line
92
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java

/**
 * Set the name of the parameter.
 *
 * @param name the name of the doclet parameter
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Get the parameter name.
 *
 * @return the parameter's name.
 */
public String getName() {
  return name;
}


Next
Previous
Clone Instance
7
Line Count
11
Source Line
144
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java

/**
 * Set the name of the extension
 *
 * @param name the extension's name.
 */
public void setName(String name) {
  this.name = name;
}

/**
 * Get the name of the extension.
 *
 * @return the extension's name.
 */
public String getName() {
  return name;
}


First
Previous
Clone Instance
8
Line Count
10
Source Line
722
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java

/**
 * setter for the name of the property
 * @param name name of the property
 */
public void setName(String name) {
  this.name = name;
}

/**
 * getter for the value of the property
 * @return value of the property
 */
public String getValue() {
  return value;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Set the definition's name.
     * @param name the name of the definition.
     */
/**
         * Set the name attribute.
         * @param name the name of the option.
         */
/**
         * Set the name of this TargetElement.
         * @param name   the <code>String</code> target name.
         */
/**
     * Sets the name of this target.
     *
     * @param name The name of this target. Should not be <code>null</code>.
     */
/**
         * Set the name attribute.
         * @param name a <code>String</code> value
         */
/**
         * Set the name of the extension
         *
         * @param name the extension's name.
         */
/**
         * Set the name of the parameter.
         *
         * @param name the name of the doclet parameter
         */
/**
         * setter for the name of the property
         * @param name name of the property
         */
public void setName(String name) {
  this.name = name;
}

/**
     * Return the definition's name.
     * @return the name of the definition.
     */
/**
         * Get the value attribute.
         * @return the value attribute.
         */
/**
         * Get the name of this TargetElement.
         * @return <code>String</code>.
         */
/**
     * Returns the name of this target.
     *
     * @return the name of this target, or <code>null</code> if the
     *         name has not been set yet.
     */
/**
         * Get the name attribute.
         * @return the name.
         */
/**
         * Get the name of the extension.
         *
         * @return the extension's name.
         */
/**
         * Get the parameter name.
         *
         * @return the parameter's name.
         */
/**
         * getter for the value of the property
         * @return value of the property
         */
public String  [[#variablefe32ce0]]() {
  return [[#variable13192aa0]];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#fe32ce0]]
getName 
12[[#fe32ce0]]
getName 
13[[#fe32ce0]]
getName 
14[[#fe32ce0]]
getValue 
15[[#fe32ce0]]
getName 
16[[#fe32ce0]]
getName 
17[[#fe32ce0]]
getName 
18[[#fe32ce0]]
getValue 
21[[#13192aa0]]
name 
22[[#13192aa0]]
name 
23[[#13192aa0]]
name 
24[[#13192aa0]]
value 
25[[#13192aa0]]
name 
26[[#13192aa0]]
name 
27[[#13192aa0]]
name 
28[[#13192aa0]]
value