Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 2 | 2 | 0.976 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 402 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/rewrite/ListRewrite.java |
2 | 3 | 414 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/rewrite/ListRewrite.java |
| ||||
/** * Returns the original nodes in the list property managed by this * rewriter. The returned list is unmodifiable. * * @return a list of all original nodes in the list */ public List getOriginalList() { List list = (List) getEvent().getOriginalValue(); return Collections.unmodifiableList(list); } |
| ||||
/** * Returns the nodes in the revised list property managed by this * rewriter. The returned list is unmodifiable. * * @return a list of all nodes in the list taking into account * all the described changes */ public List getRewrittenList() { List list = (List) getEvent().getNewValue(); return Collections.unmodifiableList(list); } |
| |||
/** * Returns the original nodes in the list property managed by this * rewriter. The returned list is unmodifiable. * * @return a list of all original nodes in the list */ /** * Returns the nodes in the revised list property managed by this * rewriter. The returned list is unmodifiable. * * @return a list of all nodes in the list taking into account * all the described changes */ public List [[#variable975b4760]]() { List list = (List) getEvent(). [[#variable975b4700]](); return Collections.unmodifiableList(list); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#975b4760]] | getOriginalList |
1 | 2 | [[#975b4760]] | getRewrittenList |
2 | 1 | [[#975b4700]] | getOriginalValue |
2 | 2 | [[#975b4700]] | getNewValue |