diff options
| author | Joshua Rahm <joshua.rahm@colorado.edu> | 2015-01-30 17:11:48 -0700 |
|---|---|---|
| committer | Joshua Rahm <joshua.rahm@colorado.edu> | 2015-01-30 17:11:48 -0700 |
| commit | 1c5e38fe69ac8a6decbdd8abe93112f4e3369315 (patch) | |
| tree | 926cef8cb76d46862ed2c4ec7028720611e47476 /src/SilentThread.java | |
| download | Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.gz Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.bz2 Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.zip | |
added source
Diffstat (limited to 'src/SilentThread.java')
| -rw-r--r-- | src/SilentThread.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/SilentThread.java b/src/SilentThread.java new file mode 100644 index 0000000..ac28059 --- /dev/null +++ b/src/SilentThread.java @@ -0,0 +1,21 @@ +/* */ public class SilentThread extends Thread +/* */ { +/* */ private String info; +/* */ +/* */ public SilentThread(Runnable run, String info) +/* */ { +/* 14 */ super(run); +/* 15 */ this.info = info; +/* */ } +/* */ public void start() { +/* 18 */ super.start(); +/* 19 */ CalculatorGUI.silentPrint("------------------------------\n"); +/* 20 */ CalculatorGUI.silentPrint("Finished Running File: " + this.info); +/* 21 */ CalculatorGUI.silentPrint("------------------------------\n"); +/* */ } +/* */ } + +/* Location: Modulus.jar + * Qualified Name: SilentThread + * JD-Core Version: 0.6.2 + */
\ No newline at end of file |