Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
14 | 2 | 2 | 0.973 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 212 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Chmod.java |
2 | 14 | 110 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/windows/Attrib.java |
| |||||
/** * Set the executable. * This is not allowed for Chmod. * @param e ignored. * @throws BuildException always. * @ant.attribute ignore="true" */ public void setExecutable(String e) { throw new BuildException(getTaskType() + " doesn\'t support the executable attribute", getLocation()); } /** * Set the command. * This is not allowed for Chmod. * @param cmdl ignored. * @throws BuildException always. * @ant.attribute ignore="true" */ public void setCommand(Commandline cmdl) { throw new BuildException(getTaskType() + " doesn\'t support the command attribute", getLocation()); } |
| |||||
/** * Set the executable. * This is not allowed, and it always throws a BuildException. * @param e ignored * @ant.attribute ignore="true" */ public void setExecutable(String e) { throw new BuildException(getTaskType() + " doesn\'t support the executable attribute", getLocation()); } /** * Set the executable. * This is not allowed, and it always throws a BuildException. * @param e ignored * @ant.attribute ignore="true" */ public void setCommand(String e) { throw new BuildException(getTaskType() + " doesn\'t support the command attribute", getLocation()); } |
| |||
/** * Set the executable. * This is not allowed, and it always throws a BuildException. * @param e ignored * @ant.attribute ignore="true" */ /** * Set the executable. * This is not allowed for Chmod. * @param e ignored. * @throws BuildException always. * @ant.attribute ignore="true" */ public void setExecutable(String e) { throw new BuildException(getTaskType() + " doesn\'t support the executable attribute", getLocation()); } /** * Set the executable. * This is not allowed, and it always throws a BuildException. * @param e ignored * @ant.attribute ignore="true" */ /** * Set the command. * This is not allowed for Chmod. * @param cmdl ignored. * @throws BuildException always. * @ant.attribute ignore="true" */ public void setCommand( [[#variable1312c260]] [[#variable1312c1e0]]) { throw new BuildException(getTaskType() + " doesn\'t support the command attribute", getLocation()); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1312c260]] | Commandline |
1 | 2 | [[#1312c260]] | String |
2 | 1 | [[#1312c1e0]] | cmdl |
2 | 2 | [[#1312c1e0]] | e |