Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
15 | 2 | 2 | 0.981 | constructor_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 55 | E:/TSE/Projects-CloneDR/sql12/plugins/isqlj/src/org/rege/isqlj/squirrel/ExecuteISqlJCommand.java |
2 | 12 | 74 | E:/TSE/Projects-CloneDR/sql12/plugins/sqlbookmark/src/net/sourceforge/squirrel_sql/plugins/sqlbookmark/AddBookmarkCommand.java |
| |||||
public ExecuteISqlJCommand(Frame frame, ISession session, ISqlJPlugin plugin) throws IllegalArgumentException { super(); if (session == null) { throw new IllegalArgumentException("Null ISession passed"); } if (plugin == null) { throw new IllegalArgumentException("Null IPlugin passed"); } this.frame = frame; this.session = session; this.plugin = plugin; } |
| |||||
/** * Ctor. * * @param frame Parent Frame. * @param session The session that we are saving a script for. * @param plugin The current plugin. * * @throws IllegalArgumentException * Thrown if a <TT>null</TT> <TT>ISession</TT> or <TT>IPlugin</TT> * passed. */ public AddBookmarkCommand(Frame frame, ISession session, SQLBookmarkPlugin plugin) throws IllegalArgumentException { super(); if (session == null) { throw new IllegalArgumentException("Null ISession passed"); } if (plugin == null) { throw new IllegalArgumentException("Null IPlugin passed"); } this.frame = frame; this.session = session; this.plugin = plugin; } |
| |||
/** * Ctor. * * @param frame Parent Frame. * @param session The session that we are saving a script for. * @param plugin The current plugin. * * @throws IllegalArgumentException * Thrown if a <TT>null</TT> <TT>ISession</TT> or <TT>IPlugin</TT> * passed. */ public [[#variable1cc60460]](Frame frame, ISession session, [[#variable1cc60440]] plugin) throws IllegalArgumentException { super(); if (session == null) { throw new IllegalArgumentException("Null ISession passed"); } if (plugin == null) { throw new IllegalArgumentException("Null IPlugin passed"); } this.frame = frame; this.session = session; this.plugin = plugin; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1cc60460]] | ExecuteISqlJCommand |
1 | 2 | [[#1cc60460]] | AddBookmarkCommand |
2 | 1 | [[#1cc60440]] | ISqlJPlugin |
2 | 2 | [[#1cc60440]] | SQLBookmarkPlugin |