CloneSet136


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
21010.962method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12129
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Available.java
2270
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Basename.java
32203
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Checksum.java
4272
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/condition/ParserSupports.java
5262
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Dirname.java
6289
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/MakeUrl.java
72214
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Replace.java
8275
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/TempFile.java
9266
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/UpToDate.java
102178
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/WhichResource.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
129
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Available.java

/**
 * Set the name of the property which will be set if the particular resource
 * is available.
 *
 * @param property the name of the property to set.
 */
public void setProperty(String property) {
  this.property = property;
}


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

/**
* Property to set base name to.
 * @param property name of property
*/
public void setProperty(String property) {
  this.property = property;
}


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

/**
 * Sets the property to hold the generated checksum.
 * @param property a <code>String</code> value
 */
public void setProperty(String property) {
  this.property = property;
}


Next
Previous
Clone Instance
4
Line Count
2
Source Line
72
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/condition/ParserSupports.java

/**
 * Property to probe for
 * @param property the property to probe for.
 */
public void setProperty(String property) {
  this.property = property;
}


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

/**
 * The name of the property to set.
 * @param property the name of the property
 */
public void setProperty(String property) {
  this.property = property;
}


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

/**
 * set the name of a property to fill with the URL
 *
 * @param property the name of the property.
 */
public void setProperty(String property) {
  this.property = property;
}


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

/**
 * Set the name of the property whose value is to serve as
 * the replacement value; required if <code>value</code> is not set.
 * @param property property name.
 */
public void setProperty(String property) {
  this.property = property;
}


Next
Previous
Clone Instance
8
Line Count
2
Source Line
75
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/TempFile.java

/**
 * Sets the property you wish to assign the temporary file to.
 *
 * @param  property  The property to set
 * @ant.attribute group="required"
 */
public void setProperty(String property) {
  this.property = property;
}


Next
Previous
Clone Instance
9
Line Count
2
Source Line
66
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/UpToDate.java

// CheckStyle:VisibilityModifier ON
/**
 * The property to set if the target file is more up-to-date than
 * (each of) the source file(s).
 *
 * @param property the name of the property to set if Target is up-to-date.
 */
public void setProperty( final String property) {
  this.property = property;
}


First
Previous
Clone Instance
10
Line Count
2
Source Line
178
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/WhichResource.java

/**
 * the property to fill with the URL of the resource or class
 * @param property the property to be set.
 * @ant.attribute group="required"
 */
public void setProperty(String property) {
  this.property = property;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
    * Property to set base name to.
     * @param property name of property
    */
// CheckStyle:VisibilityModifier ON
/**
     * The property to set if the target file is more up-to-date than
     * (each of) the source file(s).
     *
     * @param property the name of the property to set if Target is up-to-date.
     */
/**
     * The name of the property to set.
     * @param property the name of the property
     */
/**
     * the property to fill with the URL of the resource or class
     * @param property the property to be set.
     * @ant.attribute group="required"
     */
/**
     * Sets the property you wish to assign the temporary file to.
     *
     * @param  property  The property to set
     * @ant.attribute group="required"
     */
/**
     * Property to probe for
     * @param property the property to probe for.
     */
/**
     * Set the name of the property which will be set if the particular resource
     * is available.
     *
     * @param property the name of the property to set.
     */
/**
     * Sets the property to hold the generated checksum.
     * @param property a <code>String</code> value
     */
/**
     * set the name of a property to fill with the URL
     *
     * @param property the name of the property.
     */
/**
         * Set the name of the property whose value is to serve as
         * the replacement value; required if <code>value</code> is not set.
         * @param property property name.
         */
public void setProperty( [[#variablefe402a0]]String property) {
  this.property = property;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#fe402a0]]
12[[#fe402a0]]
13[[#fe402a0]]
14[[#fe402a0]]
15[[#fe402a0]]
16[[#fe402a0]]
17[[#fe402a0]]
18[[#fe402a0]]
19[[#fe402a0]]
final 
110[[#fe402a0]]