aboutsummaryrefslogtreecommitdiff
path: root/src/GraphThread.java
blob: 9ef3bee0f1145f422be22d4ec6d46ca589e4afa0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
 */