Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 2 | 4 | 0.960 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 293 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/debug/ui/launchConfigurations/JavaMainTab.java |
2 | 7 | 306 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/debug/ui/launchConfigurations/JavaMainTab.java |
| ||||
/** * updates the external jars attribute from the specified launch config * @param config the config to load from */ private void updateExternalJars(ILaunchConfiguration config) { boolean search = false; try { search = config.getAttribute(ATTR_INCLUDE_EXTERNAL_JARS, false); } //end try catch (CoreException e) { JDIDebugUIPlugin.log(e); } fSearchExternalJarsCheckButton.setSelection(search); } |
| ||||
/** * update the inherited mains attribute from the specified launch config * @param config the config to load from */ private void updateInheritedMainsFromConfig(ILaunchConfiguration config) { boolean inherit = false; try { inherit = config.getAttribute(ATTR_CONSIDER_INHERITED_MAIN, false); } //end try catch (CoreException e) { JDIDebugUIPlugin.log(e); } fConsiderInheritedMainButton.setSelection(inherit); } |
| |||
/** * updates the external jars attribute from the specified launch config * @param config the config to load from */ /** * update the inherited mains attribute from the specified launch config * @param config the config to load from */ private void [[#variable56730460]](ILaunchConfiguration config) { boolean [[#variable567303e0]]= false; try { [[#variable567303e0]]= config.getAttribute( [[#variable56730340]], false); } //end try catch (CoreException e) { JDIDebugUIPlugin.log(e); } [[#variable56730280]].setSelection( [[#variable567303e0]]); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#56730460]] | updateExternalJars |
1 | 2 | [[#56730460]] | updateInheritedMainsFromConfig |
2 | 1 | [[#567303e0]] | search |
2 | 2 | [[#567303e0]] | inherit |
3 | 1 | [[#56730340]] | ATTR_INCLUDE_EXTERNAL_JARS |
3 | 2 | [[#56730340]] | ATTR_CONSIDER_INHERITED_MAIN |
4 | 1 | [[#56730280]] | fSearchExternalJarsCheckButton |
4 | 2 | [[#56730280]] | fConsiderInheritedMainButton |