CloneSet322


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
20220.959class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
120363
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/builders/DefaultFormBuilder.java
220477
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/builders/DefaultFormBuilder.java
Next
Last
Clone Instance
1
Line Count
20
Source Line
363
Source File
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/builders/DefaultFormBuilder.java

/**
 * Adds a text label and three components to the panel; each component
 * will span a single column. Proceeds to the next data column.
 * 
 * @param textWithMnemonic  the label's text - may mark a mnemonic
 * @param c1    the first component to add
 * @param c2    the second component to add
 * @param c3    the third component to add
 * @return the added label
 */
public JLabel append(String textWithMnemonic, Component c1, Component c2, Component c3) {
  JLabel label = append(textWithMnemonic, c1, c2);
  append(c3);
  return label;
}

/**
 * Adds a text label and four components to the panel; each component
 * will span a single column. Proceeds to the next data column.
 * 
 * @param textWithMnemonic  the label's text - may mark a mnemonic
 * @param c1    the first component to add
 * @param c2    the second component to add
 * @param c3    the third component to add
 * @param c4    the fourth component to add
 * @return the added label
 */
public JLabel append(String textWithMnemonic, Component c1, Component c2, Component c3, Component c4) {
  JLabel label = append(textWithMnemonic, c1, c2, c3);
  append(c4);
  return label;
}


First
Previous
Clone Instance
2
Line Count
20
Source Line
477
Source File
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/builders/DefaultFormBuilder.java

/**
 * Adds an internationalized (i15d) text label and three components to the panel; each component
 * will span a single column. Proceeds to the next data column.
 * 
 * @param resourceKey  the resource key for the text to add
 * @param c1    the first component to add
 * @param c2    the second component to add
 * @param c3    the third component to add
 * @return the added label
 */
public JLabel appendI15d(String resourceKey, Component c1, Component c2, Component c3) {
  JLabel label = appendI15d(resourceKey, c1, c2);
  append(c3);
  return label;
}

/**
 * Adds an internationalized (i15d) text label and four components to the panel; 
 * each component will span a single column. Proceeds to the next data column.
 * 
 * @param resourceKey  the resource key for the text to add
 * @param c1    the first component to add
 * @param c2    the second component to add
 * @param c3    the third component to add
 * @param c4    the third component to add
 * @return the added label
 */
public JLabel appendI15d(String resourceKey, Component c1, Component c2, Component c3, Component c4) {
  JLabel label = appendI15d(resourceKey, c1, c2, c3);
  append(c4);
  return label;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Adds a text label and three components to the panel; each component
     * will span a single column. Proceeds to the next data column.
     * 
     * @param textWithMnemonic  the label's text - may mark a mnemonic
     * @param c1    the first component to add
     * @param c2    the second component to add
     * @param c3    the third component to add
     * @return the added label
     */
/**
     * Adds an internationalized (i15d) text label and three components to the panel; each component
     * will span a single column. Proceeds to the next data column.
     * 
     * @param resourceKey  the resource key for the text to add
     * @param c1    the first component to add
     * @param c2    the second component to add
     * @param c3    the third component to add
     * @return the added label
     */
public JLabel  [[#variable18de2820]](String  [[#variable18df0b60]], Component c1, Component c2, Component c3) {
  JLabel label = [[#variable18de2820]]( [[#variable18df0b60]], c1, c2);
  append(c3);
  return label;
}

/**
     * Adds a text label and four components to the panel; each component
     * will span a single column. Proceeds to the next data column.
     * 
     * @param textWithMnemonic  the label's text - may mark a mnemonic
     * @param c1    the first component to add
     * @param c2    the second component to add
     * @param c3    the third component to add
     * @param c4    the fourth component to add
     * @return the added label
     */
/**
     * Adds an internationalized (i15d) text label and four components to the panel; 
     * each component will span a single column. Proceeds to the next data column.
     * 
     * @param resourceKey  the resource key for the text to add
     * @param c1    the first component to add
     * @param c2    the second component to add
     * @param c3    the third component to add
     * @param c4    the third component to add
     * @return the added label
     */
public JLabel  [[#variable18de2820]](String  [[#variable18df0b60]], Component c1, Component c2, Component c3, Component c4) {
  JLabel label = [[#variable18de2820]]( [[#variable18df0b60]], c1, c2, c3);
  append(c4);
  return label;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18de2820]]
append 
12[[#18de2820]]
appendI15d 
21[[#18df0b60]]
textWithMnemonic 
22[[#18df0b60]]
resourceKey