CloneSet341


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5220.977method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15296
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ccm/CCMCreateTask.java
25549
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ejb/BorlandDeploymentTool.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
296
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ccm/CCMCreateTask.java

/**
 *
 * @param is the input stream
 * @exception java.io.IOException on error
 */
public void setProcessErrorStream(InputStream is) throws IOException {
  BufferedReader reader = new BufferedReader(new InputStreamReader(is));
  String s = reader.readLine();
  if (s != null) {
    log("err " + s, Project.MSG_DEBUG);
  } // end of if ()
}


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

/**
 * Set the error stream of the process.
 * @param is the input stream.
 * @throws IOException if there is an error.
 */
public void setProcessErrorStream(InputStream is) throws IOException {
  BufferedReader reader = new BufferedReader(new InputStreamReader(is));
  String s = reader.readLine();
  if (s != null) {
    log("[java2iiop] " + s, Project.MSG_ERR);
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Set the error stream of the process.
     * @param is the input stream.
     * @throws IOException if there is an error.
     */
/**
     *
     * @param is the input stream
     * @exception java.io.IOException on error
     */
public void setProcessErrorStream(InputStream is) throws IOException {
  BufferedReader reader = new BufferedReader(new InputStreamReader(is));
  String s = reader.readLine();
  if (s != null) {
    log( [[#variable100cfda0]] + s, Project. [[#variable100cfc60]]);
  } // end of if ()
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#100cfda0]]
"err " 
12[[#100cfda0]]
"[java2iiop] " 
21[[#100cfc60]]
MSG_DEBUG 
22[[#100cfc60]]
MSG_ERR