Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
10 | 2 | 2 | 0.959 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 10 | 394 | E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/imap/IMAPServer.java |
2 | 8 | 204 | E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/pop3/POP3Store.java |
| |||||
/* (non-Javadoc) * @see org.columba.mail.imap.IImapServer#isSupported(java.lang.String) */ public boolean isSupported(String command) throws IOException { fetchCapas(); for (int i = 0; i < capabilities.length; i++) { if (capabilities[i].startsWith(command)) { return true; } } return false; } |
| |||||
/** * Returns whether a given POP3 command is supported by the server. */ protected boolean isSupported(String command) throws IOException { fetchCapas(); for (int i = 0; i < capas.length; i++) { if (capas[i].startsWith(command)) { return true; } } return false; } |
| |||
[[#variable130a3a60]]boolean isSupported(String command) throws IOException { fetchCapas(); for (int i = 0; i < [[#variable130a39c0]].length; i++) { if ( [[#variable130a39c0]][i].startsWith(command)) { return true; } } return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#130a3a60]] | /* (non-Javadoc) * @see org.columba.mail.imap.IImapServer#isSupported(java.lang.String) */ public |
1 | 2 | [[#130a3a60]] | /** * Returns whether a given POP3 command is supported by the server. */ protected |
2 | 1 | [[#130a39c0]] | capabilities |
2 | 2 | [[#130a39c0]] | capas |