public ChatCommandReference(String jabberId) {
if ( jabberId == null ) throw new IllegalArgumentException("jabberId == null");
this.jabberId = jabberId;
}
/**
* @return Returns the jabberId.
*/
public String getJabberId() {
return jabberId;
public BuddyStatus(String jabberId) {
if (jabberId == null)
throw new IllegalArgumentException("jabberId == null");
this.jabberId = jabberId;
}
/*
* (non-Javadoc)
*
* @see org.columba.chat.jabber.IBuddyStatus#getJabberId()
*/
public String getJabberId() {
return jabberId;
Clone fragments detected by clone detection tool
File path: /columba-1.4-src/plugins/org.columba.chat.altura/src/org/columba/chat/command/ChatCommandReference.java
|
|
File path: /columba-1.4-src/plugins/org.columba.chat.altura/src/org/columba/chat/model/BuddyStatus.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | public ChatCommandReference(String jabberId) {↵ | | 1 | public BuddyStatus(String jabberId) {↵
|
2 | if ( jabberId == null ) ↵ | | 2 | if (jabberId == null)↵
|
3 | throw new IllegalArgumentException("jabberId == null");↵ | | 3 | throw new IllegalArgumentException("jabberId == null");↵
|
4 | ↵ | | |
|
5 | this.jabberId = jabberId;↵ | | 4 | this.jabberId = jabberId;↵
|
6 | }↵ | | 5 | }↵
|
|
7 | /**↵ | | 6 | /*↵
|
8 | * @return Returns the j↵ | | |
|
| | | 7 | * (non-Javadoc)↵
|
| | | 8 | * ↵
|
9 | abberId.↵ | | 9 | * @see org.columba.chat.jabber.IBuddyStatus#getJabberId()↵
|
10 | */↵ | | 10 | */↵
|
11 | public String getJabberId() {↵ | | 11 | public String getJabberId() {↵
|
12 | return jabberId; | | 12 | return jabberId;
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 0 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.0 |
Clones location | |
Number of node comparisons | 0 |