Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
9 | 2 | 1 | 0.983 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 51 | E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/OpenNewAddressbookWindowAction.java |
2 | 9 | 42 | E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/OpenNewMailWindowAction.java |
| |||||
/* * Uses the FrameManager instance in MainInterface to open a new addressbook * window. */ public void actionPerformed(ActionEvent evt) { try { FrameManager.getInstance().openView("Addressbook"); } catch (PluginLoadingFailedException e) { e.printStackTrace(); } } |
| |||||
/* * Opens a new mail window using the FrameManager instance in MainInterface. */ public void actionPerformed(ActionEvent evt) { try { FrameManager.getInstance().openView("ThreePaneMail"); } catch (PluginLoadingFailedException e) { e.printStackTrace(); } } |
| |||
/* * Uses the FrameManager instance in MainInterface to open a new addressbook * window. */ /* * Opens a new mail window using the FrameManager instance in MainInterface. */ public void actionPerformed(ActionEvent evt) { try { FrameManager.getInstance().openView( [[#variable13114fa0]]); } catch (PluginLoadingFailedException e) { e.printStackTrace(); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#13114fa0]] | "Addressbook" |
1 | 2 | [[#13114fa0]] | "ThreePaneMail" |