Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 2 | 2 | 0.968 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 214 | E:/TSE/Projects-CloneDR/columba-1.4-src/contact/src/main/java/org/columba/addressbook/folder/AddressbookTreeNode.java |
2 | 11 | 263 | E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/AbstractFolder.java |
| |||||
public String getName() { String name = null; FolderItem item = getFolderItem(); name = item.getString("property", "name"); return name; } |
| |||||
/** * Returns the folder's name. */ public String getName() { String name = null; IFolderItem item = getConfiguration(); name = item.getString("property", "name"); //(tstich) it is necessary to return null because imap account //creation needs it! //if ( name == null ) name = "FIXME"; return name; } |
| |||
/** * Returns the folder's name. */ public String getName() { String name = null; [[#variable130f1520]] item = [[#variable130f1420]](); name = item.getString("property", "name"); //(tstich) it is necessary to return null because imap account //creation needs it! //if ( name == null ) name = "FIXME"; return name; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#130f1520]] | FolderItem |
1 | 2 | [[#130f1520]] | IFolderItem |
2 | 1 | [[#130f1420]] | getFolderItem |
2 | 2 | [[#130f1420]] | getConfiguration |