CloneSet26


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
181301.000class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
118361
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBigDecimal.java
218275
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBinary.java
319392
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBlob.java
420229
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBoolean.java
518378
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeDate.java
618296
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeDouble.java
718299
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeFloat.java
818249
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeInteger.java
918281
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeJavaObject.java
1018279
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeOther.java
1118370
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTime.java
1218383
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeTimestamp.java
1318278
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeUnknown.java
Next
Last
Clone Instance
1
Line Count
18
Source Line
361
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DataTypeBigDecimal.java

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
  * Return a JTextArea usable in the CellPopupDialog
  * and fill in the value.
  */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
  * Return a JTextArea usable in the CellPopupDialog
  * and fill in the value.
  */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in the Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in the Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
  * Return a JTextArea usable in the CellPopupDialog
  * and fill in the value.
  */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
  * Return a JTextArea usable in the CellPopupDialog
  * and fill in the value.
  */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


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

/*
 * Return a JTextArea usable in the CellPopupDialog
 * and fill in the value.
 */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
 * Validating and converting in Popup is identical to cell-related operation.
 */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}


Clone AbstractionParameter Count: 0Parameter Bindings

/*
         * Return a JTextArea usable in the CellPopupDialog
         * and fill in the value.
         */
/*
         * Return a JTextArea usable in the CellPopupDialog.
         */
/*
     * Return a JTextArea usable in the CellPopupDialog
     * and fill in the value.
     */
public JTextArea getJTextArea(Object value) {
  _textComponent = new RestorableJTextArea();
  // value is a simple string representation of the data,
  // the same one used in Text and in-cell operations.
  // the same one used in the Text and in-cell operations.
  ((RestorableJTextArea) _textComponent).setText(renderObject(value));
  // special handling of operations while editing this data type
  ((RestorableJTextArea) _textComponent).addKeyListener(new KeyTextHandler());
  return (RestorableJTextArea) _textComponent;
}

/**
         * Validating and converting in Popup is identical to cell-related operation.
         */
/**
    * Validating and converting in Popup is identical to cell-related operation.
    */
public Object validateAndConvertInPopup(String value, Object originalValue, StringBuffer messageBuffer) {
  return validateAndConvert(value, originalValue, messageBuffer);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None