Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 3 | 2 | 0.958 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 213 | E:/TSE/Projects-CloneDR/sql12/plugins/dataimport/src/net/sourceforge/squirrel_sql/plugins/dataimport/gui/ProgressBarDialog.java |
2 | 7 | 291 | E:/TSE/Projects-CloneDR/sql12/plugins/dbcopy/src/net/sourceforge/squirrel_sql/plugins/dbcopy/gui/DualProgressBarDialog.java |
3 | 7 | 309 | E:/TSE/Projects-CloneDR/sql12/plugins/dbcopy/src/net/sourceforge/squirrel_sql/plugins/dbcopy/gui/DualProgressBarDialog.java |
| |||||
/** * Sets the value for the progress bar * * @param value The current value */ public static void setBarValue( final int value) { if (SwingUtilities.isEventDispatchThread()) { progressBar.setValue(value); } else { SwingUtilities.invokeLater(new Runnable() { public void run() { progressBar.setValue(value); } } ); } } |
| |||||
public static void setTopBarValue( final int value) { if (SwingUtilities.isEventDispatchThread()) { topBar.setValue(value); } else { SwingUtilities.invokeLater(new Runnable() { public void run() { topBar.setValue(value); } } ); } } |
| |||||
public static void setBottomBarValue( final int value) { if (SwingUtilities.isEventDispatchThread()) { bottomBar.setValue(value); } else { SwingUtilities.invokeLater(new Runnable() { public void run() { bottomBar.setValue(value); } } ); } } |
| |||
/** * Sets the value for the progress bar * * @param value The current value */ public static void [[#variable1cc6a6a0]]( final int value) { if (SwingUtilities.isEventDispatchThread()) { [[#variable1cc6a600]].setValue(value); } else { SwingUtilities.invokeLater(new Runnable() { public void run() { [[#variable1cc6a600]].setValue(value); } } ); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1cc6a6a0]] | setBarValue |
1 | 2 | [[#1cc6a6a0]] | setTopBarValue |
1 | 3 | [[#1cc6a6a0]] | setBottomBarValue |
2 | 1 | [[#1cc6a600]] | progressBar |
2 | 2 | [[#1cc6a600]] | topBar |
2 | 3 | [[#1cc6a600]] | bottomBar |