Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 12 | 0 | 1.000 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 643 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Concat.java |
2 | 2 | 140 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Echo.java |
3 | 2 | 245 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/FixCRLF.java |
4 | 2 | 502 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javac.java |
5 | 2 | 126 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/ManifestTask.java |
6 | 2 | 83 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java |
7 | 2 | 245 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java |
8 | 2 | 766 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Replace.java |
9 | 2 | 270 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/SQLExec.java |
10 | 2 | 317 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Zip.java |
11 | 2 | 126 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/ArchiveScanner.java |
12 | 2 | 289 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/zip/ZipOutputStream.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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * Set the Java source file encoding name. * @param encoding the source file encoding */ public void setEncoding(String encoding) { this.encoding = encoding; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * Sets encoding of file names. * @param encoding the encoding format * @since Ant 1.6 */ public void setEncoding(String encoding) { this.encoding = encoding; } |
| |||||
/** * 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; } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |