Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
20 | 2 | 2 | 0.959 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 20 | 363 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/builders/DefaultFormBuilder.java |
2 | 20 | 477 | 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; } |
| |||||
/** * 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; } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18de2820]] | append |
1 | 2 | [[#18de2820]] | appendI15d |
2 | 1 | [[#18df0b60]] | textWithMnemonic |
2 | 2 | [[#18df0b60]] | resourceKey |