CloneSet1659


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8220.959method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1877
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/db/DriverWindowManager.java
28105
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/db/DriverWindowManager.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
77
Source File
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/db/DriverWindowManager.java

/**
 * Get a maintenance sheet for the passed driver. If a maintenance sheet
 * already exists it will be brought to the front. If one doesn't exist
 * it will be created.
 *
 * @param       driver  The driver that user has requested to modify.
 *
 * @throws      IllegalArgumentException
 *                      Thrown if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
 */
public void showModifyDriverInternalFrame( final ISQLDriver driver) {
  if (driver == null) {
    throw new IllegalArgumentException("ISQLDriver == null");
  }
  _driverWinFactory.getModifySheet(driver).moveToFront();
}


First
Previous
Clone Instance
2
Line Count
8
Source Line
105
Source File
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/db/DriverWindowManager.java

/**
 * Create and show a new maintenance sheet that will allow the user to
 * create a new driver that is a copy of the passed one.
 *
 * @return      The new maintenance sheet.
 *
 * @throws      IllegalArgumentException
 *                      Thrown if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
 */
public void showCopyDriverInternalFrame( final ISQLDriver driver) {
  if (driver == null) {
    throw new IllegalArgumentException("ISQLDriver == null");
  }
  _driverWinFactory.showCopySheet(driver).moveToFront();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * Create and show a new maintenance sheet that will allow the user to
         * create a new driver that is a copy of the passed one.
         *
         * @return      The new maintenance sheet.
         *
         * @throws      IllegalArgumentException
         *                      Thrown if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
         */
/**
         * Get a maintenance sheet for the passed driver. If a maintenance sheet
         * already exists it will be brought to the front. If one doesn't exist
         * it will be created.
         *
         * @param       driver  The driver that user has requested to modify.
         *
         * @throws      IllegalArgumentException
         *                      Thrown if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
         */
public void [[#variable1c93a8c0]]( final ISQLDriver driver) {
  if (driver == null) {
    throw new IllegalArgumentException("ISQLDriver == null");
  }
  _driverWinFactory. [[#variable1c93a860]](driver).moveToFront();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1c93a8c0]]
showModifyDriverInternalFrame 
12[[#1c93a8c0]]
showCopyDriverInternalFrame 
21[[#1c93a860]]
getModifySheet 
22[[#1c93a860]]
showCopySheet