1 37 38 39 40 41 42 package com.lutris.appserver.debugger.applet; 43 44 import java.util.Vector ; 45 46 47 import java.io.*; 48 import java.net.*; 49 import java.awt.*; 50 import java.awt.event.*; 51 import java.applet.AppletContext ; 52 import javax.swing.*; 53 import javax.swing.event.*; 54 import javax.swing.border.*; 55 import javax.swing.table.*; 56 import com.lutris.appserver.debugger.applet.io.*; 57 58 59 public class Globals { 60 61 public static JApplet japplet; 62 63 public static JButton updateButton; 64 public static JButton serverButton; 65 public static String activeTitle = "Detach"; 66 public static String inactiveTitle = "Attach"; 67 68 public static JTable applicationTable; 69 public static JList transactionList; 70 71 public static ServletTableModel servletModel; 72 public static TransactionListModel transactionModel; 73 74 public static Object networkLock = new Object (); 75 76 77 } 78 | Popular Tags |