CloneSet56


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
151810.968statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115538
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBigDecimal.java
215444
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBinary.java
315620
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBlob.java
414410
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBoolean.java
515424
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeByte.java
615648
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeClob.java
715578
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeDate.java
815468
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeDouble.java
915470
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeFloat.java
1015452
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeInteger.java
1115422
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeJavaObject.java
1215423
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeLong.java
1315404
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeOther.java
1415424
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeShort.java
1515619
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeString.java
1615523
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTime.java
1715545
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTimestamp.java
1815391
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeUnknown.java
Next
Last
Clone Instance
1
Line Count
15
Source Line
538
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBigDecimal.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB. If nullable, use null.
if (_isNullable) {
  return null;
}


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


Next
Previous
Clone Instance
9
Line Count
15
Source Line
470
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeFloat.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


Next
Previous
Clone Instance
10
Line Count
15
Source Line
452
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeInteger.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


Next
Previous
Clone Instance
11
Line Count
15
Source Line
422
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeJavaObject.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


Next
Previous
Clone Instance
12
Line Count
15
Source Line
423
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeLong.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


Next
Previous
Clone Instance
14
Line Count
15
Source Line
424
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeShort.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


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

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


First
Previous
Clone Instance
18
Line Count
15
Source Line
391
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeUnknown.java

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
if (_isNullable)
  return null;


Clone AbstractionParameter Count: 1Parameter Bindings

if (dbDefaultValue != null) {
  // try to use the DB default value
  StringBuffer mbuf = new StringBuffer();
  Object newObject = validateAndConvert(dbDefaultValue, null, mbuf);
  // if there was a problem with converting, then just fall through
  // and continue as if there was no default given in the DB.
  // Otherwise, use the converted object
  if (mbuf.length() == 0)
    return newObject;
}
// no default in DB.  If nullable, use null.
// no default in DB. If nullable, use null.
if (_isNullable)
   [[#variable18ca9b80]]
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ca9b80]]
return null; 
12[[#18ca9b80]]
return null; 
13[[#18ca9b80]]
return null; 
14[[#18ca9b80]]
{
  return null;
} 
15[[#18ca9b80]]
return null; 
16[[#18ca9b80]]
return null; 
17[[#18ca9b80]]
return null; 
18[[#18ca9b80]]
return null; 
19[[#18ca9b80]]
return null; 
110[[#18ca9b80]]
return null; 
111[[#18ca9b80]]
return null; 
112[[#18ca9b80]]
return null; 
113[[#18ca9b80]]
return null; 
114[[#18ca9b80]]
return null; 
115[[#18ca9b80]]
return null; 
116[[#18ca9b80]]
return null; 
117[[#18ca9b80]]
return null; 
118[[#18ca9b80]]
return null;