Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 2 | 1 | 0.957 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 177 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/CallTarget.java |
2 | 5 | 91 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/SubAnt.java |
| |||||
/** * Handles output. * Send it the the new project if is present, otherwise * call the super class. * @param output The string output to output. * @see Task#handleOutput(String) * @since Ant 1.5 */ public void handleOutput(String output) { if (callee != null) { callee.handleOutput(output); } else { super.handleOutput(output); } } |
| |||||
/** * Pass output sent to System.out to the new project. * * @param output a line of output * @since Ant 1.6.2 */ public void handleOutput(String output) { if (ant != null) { ant.handleOutput(output); } else { super.handleOutput(output); } } |
| |||
/** * Handles output. * Send it the the new project if is present, otherwise * call the super class. * @param output The string output to output. * @see Task#handleOutput(String) * @since Ant 1.5 */ /** * Pass output sent to System.out to the new project. * * @param output a line of output * @since Ant 1.6.2 */ public void handleOutput(String output) { if ( [[#variable130ad340]]!= null) { [[#variable130ad340]].handleOutput(output); } else { super.handleOutput(output); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#130ad340]] | callee |
1 | 2 | [[#130ad340]] | ant |