Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 2 | 1 | 0.981 | constructor_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 62 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/mainframe/action/DeleteDriverAction.java |
2 | 8 | 57 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/mainframe/action/ShowDriverWebsiteAction.java |
| |||||
/** * Ctor specifying the list of drivers. * * @param app Application API. * @param list List of <TT>ISQLDriver</TT> objects. * * @throws IllegalArgumentException * thrown if a <TT>null</TT> <TT>DriversList</TT> passed. */ public DeleteDriverAction(IApplication app, IDriversList list) { super(app); if (list == null) { throw new IllegalArgumentException("Null DriversList passed"); } _drivers = list; } |
| |||||
/** * Ctor. * * @param app Application API. */ public ShowDriverWebsiteAction(IApplication app, IDriversList list) { super(app); if (list == null) { throw new IllegalArgumentException("Null DriversList passed"); } _drivers = list; } |
| |||
/** * Ctor. * * @param app Application API. */ /** * Ctor specifying the list of drivers. * * @param app Application API. * @param list List of <TT>ISQLDriver</TT> objects. * * @throws IllegalArgumentException * thrown if a <TT>null</TT> <TT>DriversList</TT> passed. */ public [[#variable1c8eaf20]](IApplication app, IDriversList list) { super(app); if (list == null) { throw new IllegalArgumentException("Null DriversList passed"); } _drivers = list; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1c8eaf20]] | DeleteDriverAction |
1 | 2 | [[#1c8eaf20]] | ShowDriverWebsiteAction |