CloneSet8


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
27901.000class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
127282
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCCheckin.java
227444
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCCheckout.java
327337
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkattr.java
427304
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkbl.java
527190
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkdir.java
627339
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkelem.java
727327
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMklabel.java
827358
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMklbtype.java
927316
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCRmtype.java
Next
Last
Clone Instance
1
Line Count
27
Source Line
282
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCCheckin.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *            without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd containing the command line string with or
 *            without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
2
Line Count
27
Source Line
444
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCCheckout.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *                    without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'cfile' command
 *
 * @param cmd containing the command line string with or
 *                    without the cfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
3
Line Count
27
Source Line
337
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkattr.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *        without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd         containing the command line string with or
 *                    without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
4
Line Count
27
Source Line
304
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkbl.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *                    without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd CommandLine containing the command line string with or
 *                    without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
5
Line Count
27
Source Line
190
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkdir.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *            without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd containing the command line string with or
 *            without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
6
Line Count
27
Source Line
339
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMkelem.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *            without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd containing the command line string with or
 *            without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
7
Line Count
27
Source Line
327
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMklabel.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *        without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd         containing the command line string with or
 *                    without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Next
Previous
Clone Instance
8
Line Count
27
Source Line
358
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCMklbtype.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *        without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd containing the command line string with or
 *        without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


First
Previous
Clone Instance
9
Line Count
27
Source Line
316
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/clearcase/CCRmtype.java

/**
 * Get the 'comment' command
 *
 * @param cmd containing the command line string with or
 *        without the comment flag and string appended
 */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
 * Get the 'commentfile' command
 *
 * @param cmd containing the command line string with or
 *        without the commentfile flag and file appended
 */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
       inserted between the flag and the value, it is treated as a
       Windows filename with a space and it is enclosed in double
       quotes ("). This breaks clearcase.
    */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Get the 'comment' command
     *
     * @param cmd containing the command line string with or
     *        without the comment flag and string appended
     */
/**
     * Get the 'comment' command
     *
     * @param cmd containing the command line string with or
     *            without the comment flag and string appended
     */
/**
     * Get the 'comment' command
     *
     * @param cmd containing the command line string with or
     *                    without the comment flag and string appended
     */
private void getCommentCommand(Commandline cmd) {
  if (getComment() != null) {
    /* Had to make two separate commands here because if a space is
                   inserted between the flag and the value, it is treated as a
                   Windows filename with a space and it is enclosed in double
                   quotes ("). This breaks clearcase.
                */
    cmd.createArgument().setValue(FLAG_COMMENT);
    cmd.createArgument().setValue(getComment());
  }
}

/**
     * Get the 'commentfile' command
     *
     * @param cmd         containing the command line string with or
     *                    without the commentfile flag and file appended
     */
/**
     * Get the 'commentfile' command
     *
     * @param cmd containing the command line string with or
     *            without the commentfile flag and file appended
     */
/**
     * Get the 'commentfile' command
     *
     * @param cmd containing the command line string with or
     *        without the commentfile flag and file appended
     */
/**
     * Get the 'cfile' command
     *
     * @param cmd containing the command line string with or
     *                    without the cfile flag and file appended
     */
/**
     * Get the 'commentfile' command
     *
     * @param cmd CommandLine containing the command line string with or
     *                    without the commentfile flag and file appended
     */
private void getCommentFileCommand(Commandline cmd) {
  if (getCommentFile() != null) {
    /* Had to make two separate commands here because if a space is
                   inserted between the flag and the value, it is treated as a
                   Windows filename with a space and it is enclosed in double
                   quotes ("). This breaks clearcase.
                */
    cmd.createArgument().setValue(FLAG_COMMENTFILE);
    cmd.createArgument().setValue(getCommentFile());
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None