CloneSet716


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10410.981class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11643
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableCopyInStatementCommand.java
21643
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableCopyUpdateStatementCommand.java
31643
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableCopyWhereStatementCommand.java
41026
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableSelectAllCellsCommand.java
Next
Last
Clone Instance
1
Line Count
16
Source Line
43
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableCopyInStatementCommand.java

/**
 * The table we are copying data from.
 */
private JTable _table;

/**
 * Ctor specifying the <TT>JTable</TT> to get the data from.
 *
 * @param    table   The <TT>JTable</TT> to get data from.
 * @throws   IllegalArgumentException Thrown if <tt>null</tt> <tt>JTable</tt> passed.
 */
public TableCopyInStatementCommand(JTable table) {
  super();
  if (table == null) {
    throw new IllegalArgumentException("JTable == null");
  }
  _table = table;
}


Next
Previous
Clone Instance
2
Line Count
16
Source Line
43
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableCopyUpdateStatementCommand.java

/**
 * The table we are copying data from.
 */
private JTable _table;

/**
 * Ctor specifying the <TT>JTable</TT> to get the data from.
 *
 * @param    table   The <TT>JTable</TT> to get data from.
 * @throws   IllegalArgumentException Thrown if <tt>null</tt> <tt>JTable</tt> passed.
 */
public TableCopyUpdateStatementCommand(JTable table) {
  super();
  if (table == null) {
    throw new IllegalArgumentException("JTable == null");
  }
  _table = table;
}


Next
Previous
Clone Instance
3
Line Count
16
Source Line
43
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableCopyWhereStatementCommand.java

/**
 * The table we are copying data from.
 */
private JTable _table;

/**
 * Ctor specifying the <TT>JTable</TT> to get the data from.
 *
 * @param    table   The <TT>JTable</TT> to get data from.
 * @throws   IllegalArgumentException Thrown if <tt>null</tt> <tt>JTable</tt> passed.
 */
public TableCopyWhereStatementCommand(JTable table) {
  super();
  if (table == null) {
    throw new IllegalArgumentException("JTable == null");
  }
  _table = table;
}


First
Previous
Clone Instance
4
Line Count
10
Source Line
26
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/action/TableSelectAllCellsCommand.java

private JTable _table;

public TableSelectAllCellsCommand(JTable table) {
  super();
  if (table == null) {
    throw new IllegalArgumentException("JTable == null");
  }
  _table = table;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
    * The table we are copying data from.
    */
private JTable _table;

/**
    * Ctor specifying the <TT>JTable</TT> to get the data from.
    *
    * @param    table   The <TT>JTable</TT> to get data from.
    * @throws   IllegalArgumentException Thrown if <tt>null</tt> <tt>JTable</tt> passed.
    */
public [[#variable1cc60d80]](JTable table) {
  super();
  if (table == null) {
    throw new IllegalArgumentException("JTable == null");
  }
  _table = table;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1cc60d80]]
TableCopyInStatementCommand 
12[[#1cc60d80]]
TableCopyUpdateStatementCommand 
13[[#1cc60d80]]
TableCopyWhereStatementCommand 
14[[#1cc60d80]]
TableSelectAllCellsCommand