Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
16 | 2 | 3 | 0.959 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 84 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/unix/AbstractAccessTask.java |
2 | 16 | 143 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/windows/Attrib.java |
| |||||
/** * Prevent the skipping of empty filesets * * @ant.attribute ignore="true" * @param skip A user supplied boolean we won't accept. */ public void setSkipEmptyFilesets(boolean skip) { throw new BuildException(getTaskType() + " doesn\'t support the " + "skipemptyfileset attribute", getLocation()); } /** * Prevent the use of the addsourcefile atribute. * * @ant.attribute ignore="true" * @param b A user supplied boolean we won't accept. */ public void setAddsourcefile(boolean b) { throw new BuildException(getTaskType() + " doesn\'t support the addsourcefile attribute", getLocation()); } |
| |||||
/** * Set skip empty file sets. * This is not allowed, and it always throws a BuildException. * @param skip ignored * @ant.attribute ignore="true" */ public void setSkipEmptyFilesets(boolean skip) { throw new BuildException(getTaskType() + " doesn\'t support the " + "skipemptyfileset attribute", getLocation()); } /** * Set parallel. * This is not allowed, and it always throws a BuildException. * @param parallel ignored * @ant.attribute ignore="true" */ public void setParallel(boolean parallel) { throw new BuildException(getTaskType() + " doesn\'t support the parallel attribute", getLocation()); } |
| |||
/** * Set skip empty file sets. * This is not allowed, and it always throws a BuildException. * @param skip ignored * @ant.attribute ignore="true" */ /** * Prevent the skipping of empty filesets * * @ant.attribute ignore="true" * @param skip A user supplied boolean we won't accept. */ public void setSkipEmptyFilesets(boolean skip) { throw new BuildException(getTaskType() + " doesn\'t support the " + "skipemptyfileset attribute", getLocation()); } /** * Set parallel. * This is not allowed, and it always throws a BuildException. * @param parallel ignored * @ant.attribute ignore="true" */ /** * Prevent the use of the addsourcefile atribute. * * @ant.attribute ignore="true" * @param b A user supplied boolean we won't accept. */ public void [[#variable13127680]](boolean [[#variable131275e0]]) { throw new BuildException(getTaskType() + [[#variable13127560]], getLocation()); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#13127680]] | setAddsourcefile |
1 | 2 | [[#13127680]] | setParallel |
2 | 1 | [[#131275e0]] | b |
2 | 2 | [[#131275e0]] | parallel |
3 | 1 | [[#13127560]] | " doesn\'t support the addsourcefile attribute" |
3 | 2 | [[#13127560]] | " doesn\'t support the parallel attribute" |