CloneSet1231


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11201.000method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111239
E:/TSE/Projects-CloneDR/sql12/plugins/refactoring/src/net/sourceforge/squirrel_sql/plugins/refactoring/commands/MergeColumnCommand.java
210364
E:/TSE/Projects-CloneDR/sql12/plugins/refactoring/src/net/sourceforge/squirrel_sql/plugins/refactoring/commands/MergeTableCommand.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
239
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/refactoring/src/net/sourceforge/squirrel_sql/plugins/refactoring/commands/MergeColumnCommand.java

/**
 * Returns a boolean value indicating whether or not this refactoring is supported for the specified
 * dialect.
 * 
 * @param dialect
 *           the HibernateDialect to check
 * @return true if this refactoring is supported; false otherwise.
 */
@Override protected boolean isRefactoringSupportedForDialect(HibernateDialect dialect) {
  boolean result = true;
  // This refactoring depends on the following dialect API methods:
  // getUpdateSQL
  result = result && dialect.supportsUpdate();
  // getColumnAddSQL
  result = result && dialect.supportsAddColumn();
  return result;
}


First
Previous
Clone Instance
2
Line Count
10
Source Line
364
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/refactoring/src/net/sourceforge/squirrel_sql/plugins/refactoring/commands/MergeTableCommand.java

/**
 * Returns a boolean value indicating whether or not this refactoring is supported for the specified
 * dialect.
 * 
 * @param dialect
 *           the HibernateDialect to check
 * @return true if this refactoring is supported; false otherwise.
 */
@Override protected boolean isRefactoringSupportedForDialect(HibernateDialect dialect) {
  boolean result = true;
  // This refactoring depends on the following dialect API methods:
  // getUpdateSQL
  result = result && dialect.supportsUpdate();
  result = result && dialect.supportsAddColumn();
  return result;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
         * Returns a boolean value indicating whether or not this refactoring is supported for the specified
         * dialect.
         * 
         * @param dialect
         *           the HibernateDialect to check
         * @return true if this refactoring is supported; false otherwise.
         */
@Override protected boolean isRefactoringSupportedForDialect(HibernateDialect dialect) {
  boolean result = true;
  // This refactoring depends on the following dialect API methods:
  // getUpdateSQL
  result = result && dialect.supportsUpdate();
  // getColumnAddSQL
  result = result && dialect.supportsAddColumn();
  return result;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None