Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 2 | 1 | 0.955 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 406 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/session/SQLPanelAPI.java |
2 | 7 | 423 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/session/SQLPanelAPI.java |
| |||||
/** * Add a listener for events in this SQL Panel. * * @param lis Listener to add * * @throws IllegalArgumentException * Thrown if a null <TT>ISQLPanelListener</TT> passed. */ public synchronized void addSQLPanelListener(ISQLPanelListener lis) { if (lis == null) { throw new IllegalArgumentException("ISQLPanelListener == null"); } _panel.addSQLPanelListener(lis); } |
| |||||
/** * Remove a listener. * * @param lis Listener to remove * * @throws IllegalArgumentException * Thrown if a null <TT>ISQLPanelListener</TT> passed. */ public synchronized void removeSQLPanelListener(ISQLPanelListener lis) { if (lis == null) { throw new IllegalArgumentException("ISQLPanelListener == null"); } _panel.removeSQLPanelListener(lis); } |
| |||
/** * Remove a listener. * * @param lis Listener to remove * * @throws IllegalArgumentException * Thrown if a null <TT>ISQLPanelListener</TT> passed. */ /** * Add a listener for events in this SQL Panel. * * @param lis Listener to add * * @throws IllegalArgumentException * Thrown if a null <TT>ISQLPanelListener</TT> passed. */ public synchronized void [[#variable1c99f5a0]](ISQLPanelListener lis) { if (lis == null) { throw new IllegalArgumentException("ISQLPanelListener == null"); } _panel. [[#variable1c99f5a0]](lis); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1c99f5a0]] | addSQLPanelListener |
1 | 2 | [[#1c99f5a0]] | removeSQLPanelListener |