Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 2 | 0 | 1.000 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 454 | E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/AbstractFolder.java |
2 | 11 | 82 | E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/outbox/OutboxFolder.java |
| |||||
/** * Returns true if this folder can have sub folders of the specified type; * false otherwise. * * @param newFolderType * the folder that is going to be inserted as a child. * @return true if this folder can have sub folders; false otherwise. */ public boolean supportsAddFolder(String newFolderType) { return false; } /** * Returns true if this folder type can be moved around in the folder tree. * * @return true if this folder type can be moved around in the folder tree. */ public boolean supportsMove() { return false; } |
| |||||
/** * The outbox folder doesnt allow adding folders to it. * * @param newFolderType * folder to check.. * @return false always. */ public boolean supportsAddFolder(String newFolderType) { return false; } /** * Returns if this folder type can be moved. * * @return false always. */ public boolean supportsMove() { return false; } |
| |||
/** * The outbox folder doesnt allow adding folders to it. * * @param newFolderType * folder to check.. * @return false always. */ /** * Returns true if this folder can have sub folders of the specified type; * false otherwise. * * @param newFolderType * the folder that is going to be inserted as a child. * @return true if this folder can have sub folders; false otherwise. */ public boolean supportsAddFolder(String newFolderType) { return false; } /** * Returns if this folder type can be moved. * * @return false always. */ /** * Returns true if this folder type can be moved around in the folder tree. * * @return true if this folder type can be moved around in the folder tree. */ public boolean supportsMove() { return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |