Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 1 | 0.980 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 184 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/ComboDialogField.java |
2 | 6 | 157 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/StringDialogField.java |
| ||||
/** * Sets the text. Triggers a dialog-changed event. */ public void setText(String text) { fText = text; if (isOkToUse(fComboControl)) { fComboControl.setText(text); } else { dialogFieldChanged(); } } |
| ||||
/** * Sets the text. Triggers a dialog-changed event. */ public void setText(String text) { fText = text; if (isOkToUse(fTextControl)) { fTextControl.setText(text); } else { dialogFieldChanged(); } } |
| |||
/** * Sets the text. Triggers a dialog-changed event. */ public void setText(String text) { fText = text; if (isOkToUse( [[#variable580cd980]])) { [[#variable580cd980]].setText(text); } else { dialogFieldChanged(); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#580cd980]] | fTextControl |
1 | 2 | [[#580cd980]] | fComboControl |