CloneSet132


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14420.989class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116365
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/DaffodilDialectExt.java
214398
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/DerbyDialectExt.java
321424
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/MAXDBDialectExt.java
421426
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/PointbaseDialectExt.java
Next
Last
Clone Instance
1
Line Count
16
Source Line
365
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/DaffodilDialectExt.java

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getDropPrimaryKeySQL(java.lang.String,
 *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public String getDropPrimaryKeySQL( final String pkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropPrimaryKeySQL(pkName, tableName, true, true, qualifier, prefs, this );
}

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getDropForeignKeySQL(java.lang.String,
 *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public String getDropForeignKeySQL( final String fkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropForeignKeySQL(fkName, tableName, qualifier, prefs, this );
}


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

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.DB2DialectExt#getDropPrimaryKeySQL(java.lang.String,
 *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public String getDropPrimaryKeySQL( final String pkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropPrimaryKeySQL(pkName, tableName, false, false, qualifier, prefs, this );
}

/**
 * @see net.sourceforge.squirrel_sql.fw.dialects.DB2DialectExt#getDropForeignKeySQL(java.lang.String,
 *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
 */
@Override public String getDropForeignKeySQL( final String fkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropForeignKeySQL(fkName, tableName, qualifier, prefs, this );
}


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

/**
 * Returns the SQL command to drop the specified table's primary key.
 * 
 * @param pkName
 *           the name of the primary key that should be dropped
 * @param tableName
 *           the name of the table whose primary key should be dropped
 * @return
 */
@Override public String getDropPrimaryKeySQL( final String pkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropPrimaryKeySQL(pkName, tableName, false, false, qualifier, prefs, this );
}

/**
 * Returns the SQL command to drop the specified table's foreign key constraint.
 * 
 * @param fkName
 *           the name of the foreign key that should be dropped
 * @param tableName
 *           the name of the table whose foreign key should be dropped
 * @return
 */
@Override public String getDropForeignKeySQL( final String fkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropForeignKeySQL(fkName, tableName, qualifier, prefs, this );
}


First
Previous
Clone Instance
4
Line Count
21
Source Line
426
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/dialects/PointbaseDialectExt.java

/**
 * Returns the SQL command to drop the specified table's primary key. alter table <tableName> drop
 * constraint <pkName>
 * 
 * @param pkName
 *           the name of the primary key that should be dropped
 * @param tableName
 *           the name of the table whose primary key should be dropped
 * @return
 */
@Override public String getDropPrimaryKeySQL( final String pkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropPrimaryKeySQL(pkName, tableName, true, false, qualifier, prefs, this );
}

/**
 * Returns the SQL command to drop the specified table's foreign key constraint.
 * 
 * @param fkName
 *           the name of the foreign key that should be dropped
 * @param tableName
 *           the name of the table whose foreign key should be dropped
 * @return
 */
@Override public String getDropForeignKeySQL( final String fkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropForeignKeySQL(fkName, tableName, qualifier, prefs, this );
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * @see net.sourceforge.squirrel_sql.fw.dialects.DB2DialectExt#getDropPrimaryKeySQL(java.lang.String,
         *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
         */
/**
         * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getDropPrimaryKeySQL(java.lang.String,
         *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
         */
/**
         * Returns the SQL command to drop the specified table's primary key. alter table <tableName> drop
         * constraint <pkName>
         * 
         * @param pkName
         *           the name of the primary key that should be dropped
         * @param tableName
         *           the name of the table whose primary key should be dropped
         * @return
         */
/**
         * Returns the SQL command to drop the specified table's primary key.
         * 
         * @param pkName
         *           the name of the primary key that should be dropped
         * @param tableName
         *           the name of the table whose primary key should be dropped
         * @return
         */
@Override public String getDropPrimaryKeySQL( final String pkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropPrimaryKeySQL(pkName, tableName,  [[#variable18ca3980]],  [[#variable18ca3940]], qualifier, prefs, this );
}

/**
         * @see net.sourceforge.squirrel_sql.fw.dialects.DB2DialectExt#getDropForeignKeySQL(java.lang.String,
         *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
         */
/**
         * @see net.sourceforge.squirrel_sql.fw.dialects.CommonHibernateDialect#getDropForeignKeySQL(java.lang.String,
         *      java.lang.String, DatabaseObjectQualifier, SqlGenerationPreferences)
         */
/**
         * Returns the SQL command to drop the specified table's foreign key constraint.
         * 
         * @param fkName
         *           the name of the foreign key that should be dropped
         * @param tableName
         *           the name of the table whose foreign key should be dropped
         * @return
         */
@Override public String getDropForeignKeySQL( final String fkName, final String tableName, DatabaseObjectQualifier qualifier, SqlGenerationPreferences prefs) {
  return DialectUtils.getDropForeignKeySQL(fkName, tableName, qualifier, prefs, this );
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ca3980]]
true 
12[[#18ca3980]]
false 
13[[#18ca3980]]
false 
14[[#18ca3980]]
true 
21[[#18ca3940]]
true 
22[[#18ca3940]]
false 
23[[#18ca3940]]
false 
24[[#18ca3940]]
false