Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 2 | 2 | 0.957 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 838 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javadoc.java |
2 | 3 | 848 | 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); } |
| |||||
/** * 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); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#130ba980]] | String |
1 | 2 | [[#130ba980]] | Path |
2 | 1 | [[#130ba920]] | setValue |
2 | 2 | [[#130ba920]] | setPath |