Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 3 | 1 | 0.962 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 91 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/edit/command/CopyToClipboardCommand.java |
2 | 3 | 47 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/edit/command/DeleteCommand.java |
3 | 3 | 73 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/edit/command/RemoveCommand.java |
| |||||
/** * This creates a command that copies the given object to the clipboard. */ public static Command create(EditingDomain domain, Object owner) { return create(domain, Collections.singleton(owner)); } |
| |||||
/** * This creates a command that deletes the given object. */ public static Command create(EditingDomain domain, Object object) { return create(domain, Collections.singleton(object)); } |
| |||||
/** * This creates a command to remove an object. */ public static Command create(EditingDomain domain, Object value) { return create(domain, Collections.singleton(value)); } |
| |||
/** * This creates a command that copies the given object to the clipboard. */ /** * This creates a command that deletes the given object. */ /** * This creates a command to remove an object. */ public static Command create(EditingDomain domain, Object [[#variable173ea280]]) { return create(domain, Collections.singleton( [[#variable173ea280]])); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#173ea280]] | owner |
1 | 2 | [[#173ea280]] | object |
1 | 3 | [[#173ea280]] | value |