Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 2 | 4 | 0.961 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 1543 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/DeltaProcessor.java |
2 | 5 | 1872 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/DeltaProcessor.java |
| ||||
/* * Returns the other root infos for the given path. Look in the old other roots table if kind is REMOVED. */ private ArrayList otherRootsInfo(IPath path, int kind) { if (kind == IResourceDelta.REMOVED) { return (ArrayList) this.state.oldOtherRoots.get(path); } return (ArrayList) this.state.otherRoots.get(path); } |
| ||||
/* * Returns the root info for the given path. Look in the old roots table if kind is REMOVED. */ private RootInfo rootInfo(IPath path, int kind) { if (kind == IResourceDelta.REMOVED) { return (RootInfo) this.state.oldRoots.get(path); } return (RootInfo) this.state.roots.get(path); } |
| |||
/* * Returns the other root infos for the given path. Look in the old other roots table if kind is REMOVED. */ /* * Returns the root info for the given path. Look in the old roots table if kind is REMOVED. */ private [[#variable99b17b20]] [[#variable99b17ac0]](IPath path, int kind) { if (kind == IResourceDelta.REMOVED) { return ( [[#variable99b17b20]]) this.state. [[#variable99b17a60]].get(path); } return ( [[#variable99b17b20]]) this.state. [[#variable99b17a00]].get(path); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#99b17b20]] | ArrayList |
1 | 2 | [[#99b17b20]] | RootInfo |
2 | 1 | [[#99b17ac0]] | otherRootsInfo |
2 | 2 | [[#99b17ac0]] | rootInfo |
3 | 1 | [[#99b17a60]] | oldOtherRoots |
3 | 2 | [[#99b17a60]] | oldRoots |
4 | 1 | [[#99b17a00]] | otherRoots |
4 | 2 | [[#99b17a00]] | roots |