CloneSet169


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
21210.980method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13104
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBoolean.java
22115
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeByte.java
32228
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeDate.java
42165
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeOther.java
52265
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeString.java
62207
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTime.java
72233
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTimestamp.java
82167
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeUnknown.java
92198
E:/TSE/Projects-CloneDR/sql12/plugins/db2/src/net/sourceforge/squirrel_sql/plugins/db2/types/DB2XmlTypeDataTypeComponent.java
103347
E:/TSE/Projects-CloneDR/sql12/plugins/oracle/src/net/sourceforge/squirrel_sql/plugins/oracle/types/OracleXmlTypeDataTypeComponent.java
113212
E:/TSE/Projects-CloneDR/sql12/plugins/postgres/src/net/sourceforge/squirrel_sql/plugins/postgres/types/PostgreSqlOtherTypeDataTypeComponent.java
123207
E:/TSE/Projects-CloneDR/sql12/plugins/postgres/src/net/sourceforge/squirrel_sql/plugins/postgres/types/PostgreSqlXmlTypeDataTypeComponent.java
Next
Last
Clone Instance
1
Line Count
3
Source Line
104
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBoolean.java

/**
 * Determine if two objects of this data type contain the same value. Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((Boolean) obj1).equals(obj2);
}


Next
Previous
Clone Instance
2
Line Count
2
Source Line
115
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeByte.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((Byte) obj1).equals(obj2);
}


Next
Previous
Clone Instance
3
Line Count
2
Source Line
228
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeDate.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((Date) obj1).equals(obj2);
}


Next
Previous
Clone Instance
4
Line Count
2
Source Line
165
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeOther.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


Next
Previous
Clone Instance
5
Line Count
2
Source Line
265
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeString.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


Next
Previous
Clone Instance
6
Line Count
2
Source Line
207
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTime.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((Time) obj1).equals(obj2);
}


Next
Previous
Clone Instance
7
Line Count
2
Source Line
233
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTimestamp.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((Timestamp) obj1).equals(obj2);
}


Next
Previous
Clone Instance
8
Line Count
2
Source Line
167
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeUnknown.java

/**
 * Determine if two objects of this data type contain the same value.
 * Neither of the objects is null
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


Next
Previous
Clone Instance
9
Line Count
2
Source Line
198
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/db2/src/net/sourceforge/squirrel_sql/plugins/db2/types/DB2XmlTypeDataTypeComponent.java

/**
 * @see net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent.IDataTypeComponent#areEqual(java.lang.Object,
 *      java.lang.Object)
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


Next
Previous
Clone Instance
10
Line Count
3
Source Line
347
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/oracle/src/net/sourceforge/squirrel_sql/plugins/oracle/types/OracleXmlTypeDataTypeComponent.java

/**
 * @see net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent.IDataTypeComponent#areEqual(java.lang.Object,
 *      java.lang.Object)
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


Next
Previous
Clone Instance
11
Line Count
3
Source Line
212
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/postgres/src/net/sourceforge/squirrel_sql/plugins/postgres/types/PostgreSqlOtherTypeDataTypeComponent.java

/**
 * @see net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent.IDataTypeComponent#areEqual(java.lang.Object,
 *      java.lang.Object)
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


First
Previous
Clone Instance
12
Line Count
3
Source Line
207
Source File
E:/TSE/Projects-CloneDR/sql12/plugins/postgres/src/net/sourceforge/squirrel_sql/plugins/postgres/types/PostgreSqlXmlTypeDataTypeComponent.java

/**
 * @see net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent.IDataTypeComponent#areEqual(java.lang.Object,
 *      java.lang.Object)
 */
public boolean areEqual(Object obj1, Object obj2) {
  return ((String) obj1).equals(obj2);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
         * @see net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent.IDataTypeComponent#areEqual(java.lang.Object,
         *      java.lang.Object)
         */
/**
         * Determine if two objects of this data type contain the same value. Neither of the objects is null
         */
/**
         * Determine if two objects of this data type contain the same value.
         * Neither of the objects is null
         */
/**
    * Determine if two objects of this data type contain the same value.
    * Neither of the objects is null
    */
public boolean areEqual(Object obj1, Object obj2) {
  return (( [[#variable1af7aea0]]) obj1).equals(obj2);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1af7aea0]]
Boolean 
12[[#1af7aea0]]
Byte 
13[[#1af7aea0]]
Date 
14[[#1af7aea0]]
String 
15[[#1af7aea0]]
String 
16[[#1af7aea0]]
Time 
17[[#1af7aea0]]
Timestamp 
18[[#1af7aea0]]
String 
19[[#1af7aea0]]
String 
110[[#1af7aea0]]
String 
111[[#1af7aea0]]
String 
112[[#1af7aea0]]
String