Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 2 | 3 | 0.956 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 296 | E:/TSE/Projects-CloneDR/sql12/plugins/codecompletion/src/net/sourceforge/squirrel_sql/plugins/codecompletion/CodeCompletionInfoCollection.java |
2 | 11 | 309 | E:/TSE/Projects-CloneDR/sql12/plugins/codecompletion/src/net/sourceforge/squirrel_sql/plugins/codecompletion/CodeCompletionInfoCollection.java |
| |||||
public boolean isCatalog(String name) { for (int i = 0; i < _catalogs.size(); i++) { CodeCompletionCatalogInfo info = _catalogs.get(i); if (info.getCompareString().equalsIgnoreCase(name)) { return true; } } return false; } |
| |||||
public boolean isSchema(String name) { for (int i = 0; i < _schemas.size(); i++) { CodeCompletionSchemaInfo info = _schemas.get(i); if (info.getCompareString().equalsIgnoreCase(name)) { return true; } } return false; } |
| |||
public boolean [[#variable1cce97c0]](String name) { for (int i = 0; i < [[#variable1cce9700]].size(); i++) { [[#variable1cce95a0]] info = [[#variable1cce9700]].get(i); if (info.getCompareString().equalsIgnoreCase(name)) { return true; } } return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1cce97c0]] | isCatalog |
1 | 2 | [[#1cce97c0]] | isSchema |
2 | 1 | [[#1cce9700]] | _catalogs |
2 | 2 | [[#1cce9700]] | _schemas |
3 | 1 | [[#1cce95a0]] | CodeCompletionCatalogInfo |
3 | 2 | [[#1cce95a0]] | CodeCompletionSchemaInfo |