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.985 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 105 | E:/TSE/Projects-CloneDR/sql12/plugins/dataimport/src/net/sourceforge/squirrel_sql/plugins/dataimport/ImportDataIntoTableExecutor.java |
2 | 9 | 130 | E:/TSE/Projects-CloneDR/sql12/plugins/dbcopy/src/net/sourceforge/squirrel_sql/plugins/dbcopy/CopyExecutor.java |
| |||||
/** * Starts the thread that executes the insert operation. */ public void execute() { Runnable runnable = new Runnable() { public void run() { _execute(); } }; execThread = new Thread(runnable); execThread.setName("Dataimport Executor Thread"); execThread.start(); } |
| |||||
/** * Starts the thread that executes the copy operation. */ public void execute() { Runnable runnable = new Runnable() { public void run() { _execute(); } }; execThread = new Thread(runnable); execThread.setName("DBCopy Executor Thread"); execThread.start(); } |
| |||
/** * Starts the thread that executes the insert operation. */ /** * Starts the thread that executes the copy operation. */ public void execute() { Runnable runnable = new Runnable() { public void run() { _execute(); } }; execThread = new Thread(runnable); execThread.setName( [[#variable1c81a100]]); execThread.start(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1c81a100]] | "Dataimport Executor Thread" |
1 | 2 | [[#1c81a100]] | "DBCopy Executor Thread" |