CloneSet91


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
21201.000method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12643
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Concat.java
22140
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Echo.java
32245
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/FixCRLF.java
42502
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javac.java
52126
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/ManifestTask.java
6283
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java
72245
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java
82766
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Replace.java
92270
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/SQLExec.java
102317
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Zip.java
112126
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/ArchiveScanner.java
122289
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/zip/ZipOutputStream.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
643
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Concat.java

/**
 * The encoding of the text element
 *
 * @param encoding the name of the charset used to encode
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
2
Line Count
2
Source Line
140
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Echo.java

/**
 * Declare the encoding to use when outputting to a file;
 * Use "" for the platform's default encoding.
 * @param encoding the character encoding to use.
 * @since 1.7
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
3
Line Count
2
Source Line
245
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/FixCRLF.java

/**
 * Specifies the encoding Ant expects the files to be
 * in--defaults to the platforms default encoding.
 * @param encoding String encoding name.
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
4
Line Count
2
Source Line
502
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javac.java

/**
 * Set the Java source file encoding name.
 * @param encoding the source file encoding
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


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

/**
 * The encoding to use for reading in an existing manifest file
 * @param encoding the manifest file encoding.
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
6
Line Count
2
Source Line
83
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java

/**
 * Set the encoding to translate to/from.
 * If unset, the default encoding for the JVM is used.
 *
 * @param encoding String containing the name of the Native
 *                 encoding to convert from or to.
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
7
Line Count
2
Source Line
245
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java

/**
 * Specifies the encoding Ant expects the files to be in -
 * defaults to the platforms default encoding.
 * @param encoding the encoding attribute
 *
 * @since Ant 1.6
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
8
Line Count
2
Source Line
766
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Replace.java

/**
 * Set the file encoding to use on the files read and written by the task;
 * optional, defaults to default JVM encoding.
 *
 * @param encoding the encoding to use on the files.
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
9
Line Count
2
Source Line
270
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/SQLExec.java

/**
 * Set the file encoding to use on the SQL files read in
 *
 * @param encoding the encoding to use on the files
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
10
Line Count
2
Source Line
317
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Zip.java

/**
 * Encoding to use for filenames, defaults to the platform's
 * default encoding.
 *
 * <p>For a list of possible values see <a
 * href="http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html">http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html</a>.</p>
 * @param encoding the encoding name
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Next
Previous
Clone Instance
11
Line Count
2
Source Line
126
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/ArchiveScanner.java

/**
 * Sets encoding of file names.
 * @param encoding the encoding format
 * @since Ant 1.6
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


First
Previous
Clone Instance
12
Line Count
2
Source Line
289
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/zip/ZipOutputStream.java

/**
 * The encoding to use for filenames and the file comment.
 *
 * <p>For a list of possible values see <a
 * href="http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html">http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html</a>.
 * Defaults to the platform's default character encoding.</p>
 * @param encoding the encoding value
 * @since 1.3
 */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
         * The encoding of the text element
         *
         * @param encoding the name of the charset used to encode
         */
/**
     * Declare the encoding to use when outputting to a file;
     * Use "" for the platform's default encoding.
     * @param encoding the character encoding to use.
     * @since 1.7
     */
/**
     * Specifies the encoding Ant expects the files to be
     * in--defaults to the platforms default encoding.
     * @param encoding String encoding name.
     */
/**
     * Set the Java source file encoding name.
     * @param encoding the source file encoding
     */
/**
     * Set the file encoding to use on the files read and written by the task;
     * optional, defaults to default JVM encoding.
     *
     * @param encoding the encoding to use on the files.
     */
/**
     * The encoding to use for reading in an existing manifest file
     * @param encoding the manifest file encoding.
     */
/**
     * Sets encoding of file names.
     * @param encoding the encoding format
     * @since Ant 1.6
     */
/**
     * Set the encoding to translate to/from.
     * If unset, the default encoding for the JVM is used.
     *
     * @param encoding String containing the name of the Native
     *                 encoding to convert from or to.
     */
/**
     * Specifies the encoding Ant expects the files to be in -
     * defaults to the platforms default encoding.
     * @param encoding the encoding attribute
     *
     * @since Ant 1.6
     */
/**
     * Set the file encoding to use on the SQL files read in
     *
     * @param encoding the encoding to use on the files
     */
/**
     * The encoding to use for filenames and the file comment.
     *
     * <p>For a list of possible values see <a
     * href="http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html">http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html</a>.
     * Defaults to the platform's default character encoding.</p>
     * @param encoding the encoding value
     * @since 1.3
     */
/**
     * Encoding to use for filenames, defaults to the platform's
     * default encoding.
     *
     * <p>For a list of possible values see <a
     * href="http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html">http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html</a>.</p>
     * @param encoding the encoding name
     */
public void setEncoding(String encoding) {
  this.encoding = encoding;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None