CloneSet45


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
101220.963method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15374
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/DB2DialectExt.java
213190
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/FirebirdDialectExt.java
35166
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/H2DialectExt.java
45319
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/HADBDialectExt.java
513161
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/HSQLDialectExt.java
69216
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/InformixDialectExt.java
79195
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/IngresDialectExt.java
87285
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/InterbaseDialectExt.java
95253
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/McKoiDialectExt.java
109292
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/PostgreSQLDialectExt.java
1110253
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/SQLServerDialectExt.java
129223
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/TimesTenDialectExt.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
374
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/DB2DialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, false, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
2
Line Count
13
Source Line
190
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/FirebirdDialectExt.java

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getTableDropSQL(net.sourceforge.squirrel_sql.fw.sql.ITableInfo,
 *      boolean, boolean, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, false, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
3
Line Count
5
Source Line
166
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/H2DialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, true, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
4
Line Count
5
Source Line
319
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/HADBDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, false, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
5
Line Count
13
Source Line
161
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/HSQLDialectExt.java

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getTableDropSQL(net.sourceforge.squirrel_sql.fw.sql.ITableInfo,
 *      boolean, boolean, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, true, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
6
Line Count
9
Source Line
216
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/InformixDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, true, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
7
Line Count
9
Source Line
195
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/IngresDialectExt.java

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getTableDropSQL(net.sourceforge.squirrel_sql.fw.sql.ITableInfo,
 *      boolean, boolean, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, false, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
8
Line Count
7
Source Line
285
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/InterbaseDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
@Override public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, true, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
9
Line Count
5
Source Line
253
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/McKoiDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, false, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
10
Line Count
9
Source Line
292
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/PostgreSQLDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, true, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Next
Previous
Clone Instance
11
Line Count
10
Source Line
253
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/SQLServerDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
@Override public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, false, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


First
Previous
Clone Instance
12
Line Count
9
Source Line
223
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/TimesTenDialectExt.java

/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo, true, cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}


Clone AbstractionParameter Count: 2Parameter Bindings

 [[#variable18cecf60]]List<String> getTableDropSQL(ITableInfo iTableInfo, boolean cascadeConstraints, boolean isMaterializedView, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getTableDropSQL(iTableInfo,  [[#variable19050540]], cascadeConstraints, false, DialectUtils.CASCADE_CLAUSE, false, qualifier, prefs, this );
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
12[[#18cecf60]]
/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getTableDropSQL(net.sourceforge.squirrel_sql.fw.sql.ITableInfo,
 *      boolean, boolean, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public 
13[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
14[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
15[[#18cecf60]]
/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getTableDropSQL(net.sourceforge.squirrel_sql.fw.sql.ITableInfo,
 *      boolean, boolean, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public 
16[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
17[[#18cecf60]]
/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getTableDropSQL(net.sourceforge.squirrel_sql.fw.sql.ITableInfo,
 *      boolean, boolean, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
public 
18[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
@Override public 
19[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
110[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
111[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
@Override public 
112[[#18cecf60]]
/**
 * Returns the SQL that forms the command to drop the specified table. If cascade contraints is supported
 * by the dialect and cascadeConstraints is true, then a drop statement with cascade constraints clause
 * will be formed.
 * 
 * @param iTableInfo
 *           the table to drop
 * @param cascadeConstraints
 *           whether or not to drop any FKs that may reference the specified table.
 * @return the drop SQL command.
 */
public 
21[[#19050540]]
false 
22[[#19050540]]
false 
23[[#19050540]]
true 
24[[#19050540]]
false 
25[[#19050540]]
true 
26[[#19050540]]
true 
27[[#19050540]]
false 
28[[#19050540]]
true 
29[[#19050540]]
false 
210[[#19050540]]
true 
211[[#19050540]]
false 
212[[#19050540]]
true