CloneSet834


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3220.957method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13838
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java
23848
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java
Next
Last
Clone Instance
1
Line Count
3
Source Line
838
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java

/**
 * Set the location of the extensions directories.
 *
 * @param path the string version of the path.
 * @deprecated since 1.5.x.
 *             Use the {@link #setExtdirs(Path)} version.
 */
public void setExtdirs(String path) {
  cmd.createArgument().setValue("-extdirs");
  cmd.createArgument().setValue(path);
}


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

/**
 * Set the location of the extensions directories.
 *
 * @param path a path containing the extension directories.
 */
public void setExtdirs(Path path) {
  cmd.createArgument().setValue("-extdirs");
  cmd.createArgument().setPath(path);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Set the location of the extensions directories.
     *
     * @param path a path containing the extension directories.
     */
/**
     * Set the location of the extensions directories.
     *
     * @param path the string version of the path.
     * @deprecated since 1.5.x.
     *             Use the {@link #setExtdirs(Path)} version.
     */
public void setExtdirs( [[#variable130ba980]] path) {
  cmd.createArgument().setValue("-extdirs");
  cmd.createArgument(). [[#variable130ba920]](path);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#130ba980]]
String 
12[[#130ba980]]
Path 
21[[#130ba920]]
setValue 
22[[#130ba920]]
setPath