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.951 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 68 | E:/TSE/Projects-CloneDR/columba-1.4-src/contact-facade/src/main/java/org/columba/addressbook/facade/GroupItem.java |
2 | 4 | 77 | E:/TSE/Projects-CloneDR/columba-1.4-src/contact-facade/src/main/java/org/columba/addressbook/facade/GroupItem.java |
| |||||
/* (non-Javadoc) * @see org.columba.addressbook.facade.IGroupItem#addContact(org.columba.addressbook.facade.IContactItem) */ public void addContact(IContactItem item) { if (item == null) throw new IllegalArgumentException("item == null"); list.add(item); } |
| |||||
/* (non-Javadoc) * @see org.columba.addressbook.facade.IGroupItem#removeContact(org.columba.addressbook.facade.IContactItem) */ public void removeContact(IContactItem item) { if (item == null) throw new IllegalArgumentException("item == null"); list.remove(item); } |
| |||
/* (non-Javadoc) * @see org.columba.addressbook.facade.IGroupItem#removeContact(org.columba.addressbook.facade.IContactItem) */ /* (non-Javadoc) * @see org.columba.addressbook.facade.IGroupItem#addContact(org.columba.addressbook.facade.IContactItem) */ public void [[#variable131e3560]](IContactItem item) { if (item == null) throw new IllegalArgumentException("item == null"); list. [[#variable131e3500]](item); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#131e3560]] | addContact |
1 | 2 | [[#131e3560]] | removeContact |
2 | 1 | [[#131e3500]] | add |
2 | 2 | [[#131e3500]] | remove |