Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 2 | 2 | 0.958 | constructor_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 100 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/common/util/BasicEList.java |
2 | 4 | 1755 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/common/util/BasicEList.java |
| |||||
/** * Creates an initialized instance that directly uses the given arguments. * @param size the size of the list. * @param data the underlying storage of the list. */ protected BasicEList(int size, Object[] data) { this.size = size; this.data = data; } |
| |||||
/** * Creates an initialized instance. * @param size the size of the list. * @param data the underlying storage of the list. */ public UnmodifiableEList(int size, Object[] data) { this.size = size; this.data = data; } |
| |||
[[#variable1758cde0]] [[#variable1758d2e0]](int size, Object[] data) { this.size = size; this.data = data; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1758cde0]] | /** * Creates an initialized instance that directly uses the given arguments. * @param size the size of the list. * @param data the underlying storage of the list. */ protected |
1 | 2 | [[#1758cde0]] | /** * Creates an initialized instance. * @param size the size of the list. * @param data the underlying storage of the list. */ public |
2 | 1 | [[#1758d2e0]] | BasicEList |
2 | 2 | [[#1758d2e0]] | UnmodifiableEList |