Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
19 | 2 | 3 | 0.968 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 19 | 28 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/session/event/ResultTabEvent.java |
2 | 19 | 27 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/session/event/SQLResultExecuterTabEvent.java |
| |||||
public ResultTabEvent(ISession session, IResultTab tab) throws IllegalArgumentException { super(); if (session == null) { throw new IllegalArgumentException("Null ISession passed"); } if (tab == null) { throw new IllegalArgumentException("Null ResultTab passed"); } _session = session; _tab = tab; } public ISession getSession() { return _session; } |
| |||||
public SQLResultExecuterTabEvent(ISession session, ISQLResultExecuter tab) throws IllegalArgumentException { super(); if (session == null) { throw new IllegalArgumentException("Null ISession passed"); } if (tab == null) { throw new IllegalArgumentException("Null ExecuterTab passed"); } _session = session; _tab = tab; } public ISession getSession() { return _session; } |
| |||
public [[#variable1cce6e20]](ISession session, [[#variable1cce6d00]] tab) throws IllegalArgumentException { super(); if (session == null) { throw new IllegalArgumentException("Null ISession passed"); } if (tab == null) { throw new IllegalArgumentException( [[#variable1cce6d60]]); } _session = session; _tab = tab; } public ISession getSession() { return _session; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1cce6e20]] | ResultTabEvent |
1 | 2 | [[#1cce6e20]] | SQLResultExecuterTabEvent |
2 | 1 | [[#1cce6d00]] | IResultTab |
2 | 2 | [[#1cce6d00]] | ISQLResultExecuter |
3 | 1 | [[#1cce6d60]] | "Null ResultTab passed" |
3 | 2 | [[#1cce6d60]] | "Null ExecuterTab passed" |