CloneSet718


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15220.981constructor_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11555
E:/TSE/Projects-CloneDR/sql12/plugins/isqlj/src/org/rege/isqlj/squirrel/ExecuteISqlJCommand.java
21274
E:/TSE/Projects-CloneDR/sql12/plugins/sqlbookmark/src/net/sourceforge/squirrel_sql/plugins/sqlbookmark/AddBookmarkCommand.java
Next
Last
Clone Instance
1
Line Count
15
Source Line
55
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/isqlj/src/org/rege/isqlj/squirrel/ExecuteISqlJCommand.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;
}


First
Previous
Clone Instance
2
Line Count
12
Source Line
74
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/sqlbookmark/src/net/sourceforge/squirrel_sql/plugins/sqlbookmark/AddBookmarkCommand.java

/**
 * 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;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1cc60460]]
ExecuteISqlJCommand 
12[[#1cc60460]]
AddBookmarkCommand 
21[[#1cc60440]]
ISqlJPlugin 
22[[#1cc60440]]
SQLBookmarkPlugin