CloneSet692


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14330.959constructor_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11429
E:/TSE/Projects-CloneDR/sql12/plugins/firebird/src/org/firebirdsql/squirrel/act/AbstractMultipleSQLCommand.java
21446
E:/TSE/Projects-CloneDR/sql12/plugins/mysql/src/net/sourceforge/squirrel_sql/plugins/mysql/action/AbstractMultipleSQLCommand.java
31448
E:/TSE/Projects-CloneDR/sql12/plugins/mysql/src/net/sourceforge/squirrel_sql/plugins/mysql/action/AbstractTableListCommand.java
Next
Last
Clone Instance
1
Line Count
14
Source Line
29
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/firebird/src/org/firebirdsql/squirrel/act/AbstractMultipleSQLCommand.java

/**
 * Ctor specifying the current session.
 *
 * @throws    IllegalArgumentException
 *             Thrown if a?<TT>null</TT> <TT>ISession</TT>,
 *             <TT>Resources</TT> or <TT>IPlugin</TT> passed.
 */
public AbstractMultipleSQLCommand(ISession session, IPlugin plugin) {
  super();
  if (session == null) {
    throw new IllegalArgumentException("ISession == null");
  }
  if (plugin == null) {
    throw new IllegalArgumentException("IPlugin == null");
  }
  _session = session;
  _plugin = plugin;
}


Next
Previous
Clone Instance
2
Line Count
14
Source Line
46
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/mysql/src/net/sourceforge/squirrel_sql/plugins/mysql/action/AbstractMultipleSQLCommand.java

/**
 * Ctor specifying the current session.
 *
 * @throws      IllegalArgumentException
 *                      Thrown if a?<TT>null</TT> <TT>ISession</TT>,
 *                      <TT>Resources</TT> or <TT>MysqlPlugin</TT> passed.
 */
public AbstractMultipleSQLCommand(ISession session, MysqlPlugin plugin) {
  super();
  if (session == null) {
    throw new IllegalArgumentException("ISession == null");
  }
  if (plugin == null) {
    throw new IllegalArgumentException("MysqlPlugin == null");
  }
  _session = session;
  _plugin = plugin;
}


First
Previous
Clone Instance
3
Line Count
14
Source Line
48
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/mysql/src/net/sourceforge/squirrel_sql/plugins/mysql/action/AbstractTableListCommand.java

/**
 * Ctor specifying the current session.
 *
 * @throws      IllegalArgumentException
 *                      Thrown if a?<TT>null</TT> <TT>ISession</TT>,
 *                      <TT>Resources</TT> or <TT>MysqlPlugin</TT> passed.
 */
public AbstractTableListCommand(ISession session, MysqlPlugin plugin) {
  super();
  if (session == null) {
    throw new IllegalArgumentException("ISession == null");
  }
  if (plugin == null) {
    throw new IllegalArgumentException("MysqlPlugin == null");
  }
  _session = session;
  _plugin = plugin;
}


Clone AbstractionParameter Count: 3Parameter Bindings

/**
     * Ctor specifying the current session.
     *
     * @throws    IllegalArgumentException
     *             Thrown if a?<TT>null</TT> <TT>ISession</TT>,
     *             <TT>Resources</TT> or <TT>IPlugin</TT> passed.
     */
/**
         * Ctor specifying the current session.
         *
         * @throws      IllegalArgumentException
         *                      Thrown if a?<TT>null</TT> <TT>ISession</TT>,
         *                      <TT>Resources</TT> or <TT>MysqlPlugin</TT> passed.
         */
public [[#variable1cc4ea80]](ISession session, [[#variable1cc4e980]] plugin) {
  super();
  if (session == null) {
    throw new IllegalArgumentException("ISession == null");
  }
  if (plugin == null) {
    throw new IllegalArgumentException( [[#variable1cc4ea00]]);
  }
  _session = session;
  _plugin = plugin;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1cc4ea80]]
AbstractMultipleSQLCommand 
12[[#1cc4ea80]]
AbstractMultipleSQLCommand 
13[[#1cc4ea80]]
AbstractTableListCommand 
21[[#1cc4e980]]
IPlugin 
22[[#1cc4e980]]
MysqlPlugin 
23[[#1cc4e980]]
MysqlPlugin 
31[[#1cc4ea00]]
"IPlugin == null" 
32[[#1cc4ea00]]
"MysqlPlugin == null" 
33[[#1cc4ea00]]
"MysqlPlugin == null"