CloneSet833


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5210.957method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15177
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/CallTarget.java
2591
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/SubAnt.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
177
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/CallTarget.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);
  }
}


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

/**
 * 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);
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#130ad340]]
callee 
12[[#130ad340]]
ant