From 1c5e38fe69ac8a6decbdd8abe93112f4e3369315 Mon Sep 17 00:00:00 2001 From: Joshua Rahm Date: Fri, 30 Jan 2015 17:11:48 -0700 Subject: added source --- src/GraphThread.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/GraphThread.java (limited to 'src/GraphThread.java') diff --git a/src/GraphThread.java b/src/GraphThread.java new file mode 100644 index 0000000..9ef3bee --- /dev/null +++ b/src/GraphThread.java @@ -0,0 +1,24 @@ +/* */ import java.awt.EventQueue; +/* */ +/* */ public class GraphThread extends EventQueue +/* */ implements Runnable +/* */ { +/* */ public GraphThread() +/* */ { +/* */ try +/* */ { +/* 12 */ invokeLater(this); +/* */ } +/* */ catch (Exception e) { +/* 15 */ e.printStackTrace(); +/* */ } +/* */ } +/* */ +/* 19 */ public void run() { GraphFrame.run(); } +/* */ +/* */ } + +/* Location: Modulus.jar + * Qualified Name: GraphThread + * JD-Core Version: 0.6.2 + */ \ No newline at end of file -- cgit