Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 3 | 0 | 1.000 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 12 | 565 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/email/EmailTask.java |
2 | 11 | 156 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/email/Message.java |
3 | 6 | 114 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/email/MimeMailer.java |
| |||||
/** * Sets the character set of mail message. * Will be ignored if mimeType contains ....; Charset=... substring or * encoding is not a <code>mime</code>. * @param charset the character encoding to use. * @since Ant 1.6 */ public void setCharset(String charset) { this.charset = charset; } /** * Returns the character set of mail message. * * @return Charset of mail message. * @since Ant 1.6 */ public String getCharset() { return charset; } |
| |||||
/** * Sets the character set of mail message. * Will be ignored if mimeType contains ....; Charset=... substring. * @param charset the character set name. * @since Ant 1.6 */ public void setCharset(String charset) { this.charset = charset; } /** * Returns the charset of mail message. * * @return Charset of mail message. * @since Ant 1.6 */ public String getCharset() { return charset; } |
| |||||
public void setCharset(String charset) { this.charset = charset; } public String getCharset() { return charset; } |
| |||
/** * Sets the character set of mail message. * Will be ignored if mimeType contains ....; Charset=... substring or * encoding is not a <code>mime</code>. * @param charset the character encoding to use. * @since Ant 1.6 */ /** * Sets the character set of mail message. * Will be ignored if mimeType contains ....; Charset=... substring. * @param charset the character set name. * @since Ant 1.6 */ public void setCharset(String charset) { this.charset = charset; } /** * Returns the character set of mail message. * * @return Charset of mail message. * @since Ant 1.6 */ /** * Returns the charset of mail message. * * @return Charset of mail message. * @since Ant 1.6 */ public String getCharset() { return charset; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |