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.968 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 1038 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/rewrite/ImportRewrite.java |
2 | 11 | 1056 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/rewrite/ImportRewrite.java |
| ||||
/** * Returns all non-static imports that are recorded to be added. * * @return the imports recorded to be added. */ public String[] getAddedImports() { return filterFromList(this.addedImports, NORMAL_PREFIX); } /** * Returns all static imports that are recorded to be added. * * @return the static imports recorded to be added. */ public String[] getAddedStaticImports() { return filterFromList(this.addedImports, STATIC_PREFIX); } |
| ||||
/** * Returns all non-static imports that are recorded to be removed. * * @return the imports recorded to be removed. */ public String[] getRemovedImports() { return filterFromList(this.removedImports, NORMAL_PREFIX); } /** * Returns all static imports that are recorded to be removed. * * @return the static imports recorded to be removed. */ public String[] getRemovedStaticImports() { return filterFromList(this.removedImports, STATIC_PREFIX); } |
| |||
/** * Returns all non-static imports that are recorded to be added. * * @return the imports recorded to be added. */ /** * Returns all non-static imports that are recorded to be removed. * * @return the imports recorded to be removed. */ public String[] [[#variable951b8d60]]() { return filterFromList(this. [[#variable9579fae0]], NORMAL_PREFIX); } /** * Returns all static imports that are recorded to be added. * * @return the static imports recorded to be added. */ /** * Returns all static imports that are recorded to be removed. * * @return the static imports recorded to be removed. */ public String[] [[#variable94e0c480]]() { return filterFromList(this. [[#variable9579fae0]], STATIC_PREFIX); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#951b8d60]] | getAddedImports |
1 | 2 | [[#951b8d60]] | getRemovedImports |
2 | 1 | [[#9579fae0]] | addedImports |
2 | 2 | [[#9579fae0]] | removedImports |
3 | 1 | [[#94e0c480]] | getAddedStaticImports |
3 | 2 | [[#94e0c480]] | getRemovedStaticImports |