Dear all, I try to compilt gkgui-0.9 (java gui) in linux, before that I have already installed the J2EE SDK 1.4 under the directory /opt/SUNWappserver/. I have encounter a compilation error after typing the command: make all install here is the output: ------------------------------------------------------------------- find . -name \*.java|xargs javac -classpath omnigkgui -d . ./gkcmd/DebugConsoleFrame.java:5: Can't find default package `javax.swing'. Check the CLASSPATH environment variable and the access to the archives ./gkcmd/GkCmdConfigMsg.java:7: Package `javax.swing.table' not found in import. import javax.swing.table.*; ^ ./gkcmd/GkCmdFindMsg.java:7: Package `javax.swing.text' not found in import. import javax.swing.text.*; ^ ./gkcmd/GkCmdHelpMsg.java:8: Package `javax.swing.tree' not found in import. import javax.swing.tree.*; ^ ./gkcmd/GkCommand.java:8: Package `omnigkgui' not found in import. import omnigkgui.*; ^ ./AppFrame.java:9: Package `omnigkgui.gkcmd' not found in import. import omnigkgui.gkcmd.*; ^ ./EndPoint.java:9: Package `omnigkgui.util' not found in import. import omnigkgui.util.*; ^ ./GateKeeper.java:13: Package `javax.swing.event' not found in import. import javax.swing.event.*; ^ ./LogFileHandler.java:8: Package `javax.print' not found in import. import javax.print.*; ^ ./OmniGkGUI.java:3: Class or interface `javax.swing.UIManager' not found in import. import javax.swing.UIManager; ^ ./LogFileHandler.java:20: Superclass `JPopupMenu' of class `omnigkgui.LogFileHandler' not found. public class LogFileHandler extends JPopupMenu implements MouseListener, ActionListener { ^ ./LogFileHandler.java:27: Type `JFileChooser' not found in declaration of field `chooser'. private JFileChooser chooser; ^ ./LogFileHandler.java:38: Type `JMenuItem' not found in the declaration of the return type of method `makeMenuItem'. private JMenuItem makeMenuItem(String label) { ^ ./LogFileHandler.java:39: Type `JMenuItem' not found in the declaration of the local variable `item'. JMenuItem item = new JMenuItem(label); ^ ./LogFileHandler.java:57: Type `JTable' not found in the declaration of the local variable `tmpTable'. JTable tmpTable = (JTable)selectedComponent; ^ ./LogFileHandler.java:91: Type `JTextPane' not found in the declaration of the local variable `tmpTextPane'. JTextPane tmpTextPane = (JTextPane)selectedComponent; ^ ./GateKeeper.java:30: Superclass `JPanel' of class `omnigkgui.GateKeeper' not found. public class GateKeeper extends JPanel implements ActionListener, OmniGkGUIConstants { ^ ./GateKeeper.java:55: Type `JToolBar' not found in declaration of field `gkToolBar'. protected JToolBar gkToolBar; ^ ./GateKeeper.java:56: Type `JScrollPane' not found in declaration of field `textScrollPane'. protected JScrollPane textScrollPane; ^ ./GateKeeper.java:57: Type `JTextPane' not found in declaration of field `textPane'. protected JTextPane textPane; ^ ./GateKeeper.java:58: Type `JPanel' not found in declaration of field `endpointListPane'. protected JPanel endpointListPane; ^ ./GateKeeper.java:59: Type `JScrollPane' not found in declaration of field `listScrollPane'. protected JScrollPane listScrollPane; ^ ./GateKeeper.java:60: Type `GridBagLayout' not found in declaration of field `listLayout'. protected GridBagLayout listLayout; ^ ./GateKeeper.java:62: Type `JPanel' not found in declaration of field `listPane'. protected JPanel listPane; ^ ./GateKeeper.java:63: Type `JTree' not found in declaration of field `listTree'. protected JTree listTree; ^ ./GateKeeper.java:66: Type `DefaultTreeModel' not found in declaration of field `listTreeModel'. protected DefaultTreeModel listTreeModel; ^ ./GateKeeper.java:67: Type `DefaultMutableTreeNode' not found in declaration of field `rootNode'. protected DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("All Registered Endpoints"); ^ ./GateKeeper.java:68: Type `DefaultMutableTreeNode' not found in declaration of field `terminalClass'. protected DefaultMutableTreeNode terminalClass = new DefaultMutableTreeNode("Terminal"); ^ ./GateKeeper.java:69: Type `DefaultMutableTreeNode' not found in declaration of field `gatewayClass'. protected DefaultMutableTreeNode gatewayClass = new DefaultMutableTreeNode("Gateway"); ^ ./GateKeeper.java:70: Type `DefaultMutableTreeNode' not found in declaration of field `h323ProxyClass'. protected DefaultMutableTreeNode h323ProxyClass = new DefaultMutableTreeNode("H323Proxy"); ^ ./GateKeeper.java:71: Type `DefaultMutableTreeNode' not found in declaration of field `miscEndpointClass'. protected DefaultMutableTreeNode miscEndpointClass = new DefaultMutableTreeNode("Miscellaneous"); ^ ./GateKeeper.java:74: Type `SimpleAttributeSet' not found in declaration of field `styleGeneralText'. protected SimpleAttributeSet styleGeneralText = null; ^ ./GateKeeper.java:75: Type `SimpleAttributeSet' not found in declaration of field `styleGeneralRAS'. protected SimpleAttributeSet styleGeneralRAS = null; ^ ./GateKeeper.java:76: Type `SimpleAttributeSet' not found in declaration of field `styleGkConfirm'. protected SimpleAttributeSet styleGkConfirm = null; ^ ./GateKeeper.java:77: Type `SimpleAttributeSet' not found in declaration of field `styleGkReject'. protected SimpleAttributeSet styleGkReject = null; ^ ./GateKeeper.java:78: Type `SimpleAttributeSet' not found in declaration of field `styleCDR'. protected SimpleAttributeSet styleCDR = null; ^ ./GateKeeper.java:83: Type `JTabbedPane' not found in declaration of field `rootTabbedPane'. protected JTabbedPane rootTabbedPane; ^ ./GateKeeper.java:85: Type `JTabbedPane' not found in declaration of field `viewTabbedPane'. protected JTabbedPane viewTabbedPane; ^ ./GateKeeper.java:87: Type `DefaultTableModel' not found in declaration of field `cdrTableModel'. protected DefaultTableModel cdrTableModel; ^ ./GateKeeper.java:88: Type `JTable' not found in declaration of field `cdrTable'. protected JTable cdrTable; ^ ./GateKeeper.java:89: Type `JScrollPane' not found in declaration of field `cdrTScrollPane'. protected JScrollPane cdrTScrollPane; ^ ./GateKeeper.java:92: Superclass `JDialog' of class `omnigkgui.GateKeeper$InputIDDlg' not found. class InputIDDlg extends JDialog implements ActionListener { ^ ./GateKeeper.java:97: Type `JLabel' not found in declaration of field `label'. protected JLabel label = null; ^ ./GateKeeper.java:98: Type `JLabel' not found in declaration of field `label2'. protected JLabel label2 = null; ^ ./GateKeeper.java:99: Type `JLabel' not found in declaration of field `labelTime'. protected JLabel labelTime = null; ^ ./GateKeeper.java:100: Type `JTextField' not found in declaration of field `txtID'. protected JTextField txtID = null; ^ ./GateKeeper.java:101: Type `JTextField' not found in declaration of field `txtTime'. protected JTextField txtTime = null; ^ ./GateKeeper.java:102: Type `JButton' not found in declaration of field `okBtn'. protected JButton okBtn = null; ^ ./GateKeeper.java:103: Type `JButton' not found in declaration of field `cancelBtn'. protected JButton cancelBtn = null; ^ ./GateKeeper.java:139: Type `GridBagLayout' not found in the declaration of the local variable `dlgLayout'. GridBagLayout dlgLayout = new GridBagLayout(); ^ ./GateKeeper.java:224: Superclass `JDialog' of class `omnigkgui.GateKeeper$InDlgEP' not found. class InDlgEP extends JDialog { ^ ./GateKeeper.java:225: Type `JLabel' not found in declaration of field `labEP'. protected JLabel labEP = null; ^ ./GateKeeper.java:226: Type `JButton' not found in declaration of field `btnRemove'. protected JButton btnRemove = null; ^ ./GateKeeper.java:269: Type `JTabbedPane' not found in the declaration of the argument `tabRoot' of method `<init>'. GateKeeper(String _hostname, int _num_port, JTabbedPane tabRoot) { ^ ./GateKeeper.java:360: Type `JButton' not found in the declaration of the local variable `ep'. JButton ep = new JButton(_show_alias); ^ ./GateKeeper.java:377: Type `JButton' not found in the declaration of the local variable `tmpBtn'. JButton tmpBtn = (JButton)e.getComponent(); ^ ./GateKeeper.java:381: Type `JButton' not found in the declaration of the local variable `tmpBtn'. JButton tmpBtn = (JButton)e.getComponent(); ^ ./GateKeeper.java:409: Type `DefaultMutableTreeNode' not found in the declaration of the local variable `newNode'. DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(ep.getText(), false); ^ ./GateKeeper.java:456: Type `AttributeSet' not found in the declaration of the argument `attributes' of method `append'. protected void append(String s, AttributeSet attributes) { ^ ./GateKeeper.java:457: Type `Document' not found in the declaration of the local variable `d'. Document d = textPane.getDocument(); ^ ./GateKeeper.java:464: Type `JViewport' not found in the declaration of the local variable `view'. JViewport view = textScrollPane.getViewport(); ^ ./GateKeeper.java:505: Type `BadLocationException' not found in the declaration of the local variable `e'. } catch(BadLocationException e){ ^ ./GateKeeper.java:563: Type `Document' not found in the declaration of the local variable `d'. Document d = textPane.getDocument(); ^ ./GateKeeper.java:566: Type `BadLocationException' not found in the declaration of the local variable `ble'. } catch (BadLocationException ble) { ^ ./GateKeeper.java:765: Type `JLabel' not found in the declaration of the local variable `endpointListLabel'. JLabel endpointListLabel = new JLabel("H323 EndPoint List at \"" + hostname + "\"", SwingConstants.CENTER); ^ ./GateKeeper.java:800: Type `JSplitPane' not found in the declaration of the local variable `splitPane'. JSplitPane splitPane = ^ ./EndPoint.java:31: Type `JButton' not found in declaration of field `button'. public JButton button; ^ ./EndPoint.java:32: Type `DefaultMutableTreeNode' not found in declaration of field `treeNode'. public DefaultMutableTreeNode treeNode; ^ ./EndPoint.java:40: Type `JButton' not found in the declaration of the argument `_button' of method `<init>'. public EndPoint(String _epid, String _epip, String _epalias, String _eptype, JButton _button) { ^ ./EPListPane.java:16: Superclass `JPanel' of class `omnigkgui.EPListPane' not found. public class EPListPane extends JPanel { ^ ./DebugConsoleFrame.java:23: Superclass `JDialog' of class `omnigkgui.DebugConsoleFrame' not found. public class DebugConsoleFrame extends JDialog implements Runnable { ^ ./DebugConsoleFrame.java:32: Type `JPanel' not found in declaration of field `globalPane'. protected JPanel globalPane = new JPanel(new BorderLayout()); ^ ./DebugConsoleFrame.java:33: Type `JScrollPane' not found in declaration of field `scrollPane'. protected JScrollPane scrollPane; ^ ./DebugConsoleFrame.java:34: Type `JTextArea' not found in declaration of field `debugMessagePane'. protected JTextArea debugMessagePane; ^ ./DebugConsoleFrame.java:35: Type `JTextArea' not found in declaration of field `commandLineInput'. protected JTextArea commandLineInput; ^ ./DebugConsoleFrame.java:57: Type `EtchedBorder' not found in the declaration of the local variable `border'. EtchedBorder border = new EtchedBorder(EtchedBorder.RAISED, Color.cyan, Color.blue); ^ ./AppFrame_AboutBox.java:18: Superclass `JDialog' of class `omnigkgui.AppFrame_AboutBox' not found. public class AppFrame_AboutBox extends JDialog implements ActionListener { ^ ./AppFrame_AboutBox.java:19: Type `JPanel' not found in declaration of field `panel1'. JPanel panel1 = new JPanel(); ^ ./AppFrame_AboutBox.java:20: Type `JPanel' not found in declaration of field `panel2'. JPanel panel2 = new JPanel(); ^ ./AppFrame_AboutBox.java:21: Type `JPanel' not found in declaration of field `insetsPanel1'. JPanel insetsPanel1 = new JPanel(); ^ ./AppFrame_AboutBox.java:22: Type `JPanel' not found in declaration of field `insetsPanel2'. JPanel insetsPanel2 = new JPanel(); ^ ./AppFrame_AboutBox.java:23: Type `JPanel' not found in declaration of field `insetsPanel3'. JPanel insetsPanel3 = new JPanel(); ^ ./AppFrame_AboutBox.java:24: Type `JButton' not found in declaration of field `button1'. JButton button1 = new JButton(); ^ ./AppFrame_AboutBox.java:25: Type `JLabel' not found in declaration of field `imageLabel'. JLabel imageLabel = new JLabel(); ^ ./AppFrame_AboutBox.java:26: Type `JLabel' not found in declaration of field `label1'. JLabel label1 = new JLabel(); ^ ./AppFrame_AboutBox.java:27: Type `JLabel' not found in declaration of field `label2'. JLabel label2 = new JLabel(); ^ ./AppFrame_AboutBox.java:28: Type `JLabel' not found in declaration of field `label3'. JLabel label3 = new JLabel(); ^ ./AppFrame_AboutBox.java:29: Type `JLabel' not found in declaration of field `label4'. JLabel label4 = new JLabel(); ^ ./AppFrame_AboutBox.java:30: Type `JLabel' not found in declaration of field `label5'. JLabel label5 = new JLabel(); ^ ./AppFrame_AboutBox.java:31: Type `JLabel' not found in declaration of field `label6'. JLabel label6 = new JLabel(); ^ ./AppFrame_AboutBox.java:32: Type `JLabel' not found in declaration of field `label7'. JLabel label7 = new JLabel(); ^ ./AppFrame_AboutBox.java:38: Type `ImageIcon' not found in declaration of field `imageLogo'. ImageIcon imageLogo = new ImageIcon(omnigkgui.AppFrame.class.getResource("images/CT-Logo.png")); ^ ./AppFrame.java:21: Superclass `JFrame' of class `omnigkgui.AppFrame' not found. public class AppFrame extends JFrame implements GkCmdIDs { ^ ./AppFrame.java:22: Type `JPanel' not found in declaration of field `contentPane'. JPanel contentPane; ^ ./AppFrame.java:23: Type `JToolBar' not found in declaration of field `toolBar'. JToolBar toolBar = new JToolBar(); ^ ./AppFrame.java:24: Type `JLabel' not found in declaration of field `statusBar'. JLabel statusBar = new JLabel(); ^ ./AppFrame.java:26: Type `JTabbedPane' not found in declaration of field `tabbedPane'. JTabbedPane tabbedPane = new JTabbedPane(); ^ ./AppFrame.java:28: Type `ImageIcon' not found in declaration of field `mainImage'. ImageIcon mainImage; ^ ./AppFrame.java:45: Type `JMenuItem' not found in declaration of field `itmViewBtn'. private JMenuItem itmViewBtn = null; ^ ./AppFrame.java:46: Type `JMenuItem' not found in declaration of field `itmViewTree'. private JMenuItem itmViewTree = null; ^ ./AppFrame.java:51: Superclass `JDialog' of class `omnigkgui.AppFrame$InputIPDlg' not found. class InputIPDlg extends JDialog implements ActionListener { ^ ./AppFrame.java:56: Type `JLabel' not found in declaration of field `dlgLabel'. protected JLabel dlgLabel; ^ ./AppFrame.java:57: Type `JTextField' not found in declaration of field `dlgIPField'. protected JTextField dlgIPField=null; ^ ./AppFrame.java:58: Type `JTextField' not found in declaration of field `dlgPortField'. protected JTextField dlgPortField=null; ^ ./AppFrame.java:59: Type `JButton' not found in declaration of field `okBtn'. protected JButton okBtn; ^ ./AppFrame.java:60: Type `JButton' not found in declaration of field `cancelBtn'. protected JButton cancelBtn; ^ ./AppFrame.java:95: Type `GridBagLayout' not found in the declaration of the local variable `dlgLayout'. GridBagLayout dlgLayout = new GridBagLayout(); ^ ./AppFrame.java:156: Superclass `JDialog' of class `omnigkgui.AppFrame$FindEPDlg' not found. class FindEPDlg extends JDialog { ^ ./AppFrame.java:157: Type `JTextField' not found in declaration of field `searchTXT'. private JTextField searchTXT = null; ^ ./AppFrame.java:159: Type `JLabel' not found in declaration of field `label'. protected JLabel label = new JLabel("Find An EndPoint:"); ^ ./AppFrame.java:160: Type `JButton' not found in declaration of field `find'. final JButton find = new JButton(" Find "); ^ ./AppFrame.java:161: Type `JButton' not found in declaration of field `more'. final JButton more = new JButton(" More "); ^ ./AppFrame.java:203: Type `JPanel' not found in the declaration of the local variable `btnPanel'. JPanel btnPanel = new JPanel(); ^ ./AppFrame.java:214: Type `GridBagLayout' not found in the declaration of the local variable `dlgLayout'. GridBagLayout dlgLayout = new GridBagLayout(); ^ ./AppFrame.java:471: Type `JMenuBar' not found in the declaration of the local variable `menuBar'. JMenuBar menuBar = new JMenuBar(); ^ ./AppFrame.java:472: Type `JMenu' not found in the declaration of the local variable `menuGK'. JMenu menuGK = new JMenu("GateKeeper"); ^ ./AppFrame.java:473: Type `JMenu' not found in the declaration of the local variable `menuEdit'. JMenu menuEdit = new JMenu("Edit"); ^ ./AppFrame.java:474: Type `JMenu' not found in the declaration of the local variable `menuView'. JMenu menuView = new JMenu("View"); ^ ./AppFrame.java:475: Type `JMenu' not found in the declaration of the local variable `menuCmd'. JMenu menuCmd = new JMenu("GK Commands"); ^ ./AppFrame.java:476: Type `JMenu' not found in the declaration of the local variable `menuCal'. JMenu menuCal = new JMenu("Calculate"); ^ ./AppFrame.java:478: Type `JMenu' not found in the declaration of the local variable `menuAbout'. JMenu menuAbout = new JMenu("About"); ^ ./AppFrame.java:480: Type `JMenu' not found in the declaration of the local variable `menuSave'. JMenu menuSave = new JMenu("Save as..."); ^ ./AppFrame.java:481: Type `JMenu' not found in the declaration of the local variable `menuCmdEP'. JMenu menuCmdEP = new JMenu("EPs..."); ^ ./AppFrame.java:482: Type `JMenu' not found in the declaration of the local variable `menuCmdCall'. JMenu menuCmdCall = new JMenu("Calls..."); ^ ./AppFrame.java:483: Type `JMenu' not found in the declaration of the local variable `menuCmdCach'. JMenu menuCmdCach = new JMenu("Cached Calls..."); ^ ./AppFrame.java:484: Type `JMenu' not found in the declaration of the local variable `menuCmdDebug'. JMenu menuCmdDebug = new JMenu("Debug..."); ^ ./AppFrame.java:486: Type `JMenuItem' not found in the declaration of the local variable `itmAbout'. JMenuItem itmAbout = new JMenuItem("About"); ^ ./AppFrame.java:496: Type `JMenuItem' not found in the declaration of the local variable `itmGKMonitor'. JMenuItem itmGKMonitor = new JMenuItem("Monitor GK"); ^ ./AppFrame.java:507: Type `JMenuItem' not found in the declaration of the local variable `itmGKConnect'. JMenuItem itmGKConnect = new JMenuItem("Connect GK"); ^ ./AppFrame.java:517: Type `JMenuItem' not found in the declaration of the local variable `itmGKDisc'. JMenuItem itmGKDisc = new JMenuItem("Disconnect GK"); ^ ./AppFrame.java:526: Type `JMenuItem' not found in the declaration of the local variable `itmGKExit'. JMenuItem itmGKExit = new JMenuItem("Exit"); ^ ./AppFrame.java:559: Type `JMenuItem' not found in the declaration of the local variable `itmEditClr'. JMenuItem itmEditClr = new JMenuItem("Clear log"); ^ ./AppFrame.java:568: Type `JMenuItem' not found in the declaration of the local variable `itmEditRefresh'. JMenuItem itmEditRefresh = new JMenuItem("Refresh"); ^ ./AppFrame.java:577: Type `JMenuItem' not found in the declaration of the local variable `itmGKSession'. JMenuItem itmGKSession = new JMenuItem("Close Session"); ^ ./AppFrame.java:586: Type `JMenuItem' not found in the declaration of the local variable `itmEditFindEP'. JMenuItem itmEditFindEP = new JMenuItem("Find an EP"); ^ ./AppFrame.java:595: Type `JMenuItem' not found in the declaration of the local variable `itmEditSaveLog'. JMenuItem itmEditSaveLog = new JMenuItem("Save GK Status Log"); ^ ./AppFrame.java:597: Type `JMenuItem' not found in the declaration of the local variable `itmEditSaveCDR'. JMenuItem itmEditSaveCDR = new JMenuItem("Save Call Detail Record"); ^ ./AppFrame.java:599: Type `JMenuItem' not found in the declaration of the local variable `itmCmdEPCur'. JMenuItem itmCmdEPCur = new JMenuItem("Current EPs"); ^ ./AppFrame.java:609: Type `JMenuItem' not found in the declaration of the local variable `itmCmdEPDtl'. JMenuItem itmCmdEPDtl = new JMenuItem("EPs Detail"); ^ ./AppFrame.java:619: Type `JMenuItem' not found in the declaration of the local variable `itmCmdCallCur'. JMenuItem itmCmdCallCur = new JMenuItem("Current Calls"); ^ ./AppFrame.java:628: Type `JMenuItem' not found in the declaration of the local variable `itmCmdCallDtl'. JMenuItem itmCmdCallDtl = new JMenuItem("Calls Detail"); ^ ./AppFrame.java:637: Type `JMenuItem' not found in the declaration of the local variable `itmCmdCachCur'. JMenuItem itmCmdCachCur = new JMenuItem("Current Cached Calls"); ^ ./AppFrame.java:646: Type `JMenuItem' not found in the declaration of the local variable `itmCmdCachDtl'. JMenuItem itmCmdCachDtl = new JMenuItem("Cached Calls Detail"); ^ ./AppFrame.java:655: Type `JMenuItem' not found in the declaration of the local variable `itmCmdDebugFrm'. JMenuItem itmCmdDebugFrm = new JMenuItem("Debug Frame"); ^ ./AppFrame.java:664: Type `JMenuItem' not found in the declaration of the local variable `itmCmdDebugCns'. JMenuItem itmCmdDebugCns = new JMenuItem("Debug Console"); ^ ./AppFrame.java:674: Type `JMenuItem' not found in the declaration of the local variable `itmCalUseTime'. JMenuItem itmCalUseTime = new JMenuItem("Total Use Time"); ^ ./AppFrame.java:683: Type `JMenuItem' not found in the declaration of the local variable `itmCmdHelp'. JMenuItem itmCmdHelp = new JMenuItem("Command Help"); ^ ./gkcmd/ShownMsgFrame.java:17: Superclass `JFrame' of class `omnigkgui.gkcmd.ShownMsgFrame' not found. public class ShownMsgFrame extends JFrame { ^ ./gkcmd/GkCmdHelpMsg.java:22: Type `JScrollPane' not found in declaration of field `globalScrollPane'. protected JScrollPane globalScrollPane = new JScrollPane(); ^ ./gkcmd/GkCmdHelpMsg.java:23: Type `JPanel' not found in declaration of field `contentPane'. protected JPanel contentPane = new JPanel(); ^ ./gkcmd/GkCmdHelpMsg.java:24: Type `JTree' not found in declaration of field `cmdTree'. protected JTree cmdTree = new JTree(); ^ ./gkcmd/GkCmdHelpMsg.java:25: Type `JTextPane' not found in declaration of field `msgPane'. protected JTextPane msgPane = new JTextPane(); ^ ./gkcmd/GkCmdHelpMsg.java:29: Type `DefaultMutableTreeNode' not found in declaration of field `rootNode'. DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("GK Commands"); ^ ./gkcmd/GkCmdHelpMsg.java:30: Type `DefaultMutableTreeNode' not found in declaration of field `endpointNode'. DefaultMutableTreeNode endpointNode = new DefaultMutableTreeNode("Class for <Endpoint>"); ^ ./gkcmd/GkCmdHelpMsg.java:31: Type `DefaultMutableTreeNode' not found in declaration of field `callNode'. DefaultMutableTreeNode callNode = new DefaultMutableTreeNode("Class for <Call>"); ^ ./gkcmd/GkCmdHelpMsg.java:32: Type `DefaultMutableTreeNode' not found in declaration of field `operationNode'. DefaultMutableTreeNode operationNode = new DefaultMutableTreeNode("Class for <Operation>"); ^ ./gkcmd/GkCmdHelpMsg.java:33: Type `DefaultMutableTreeNode' not found in declaration of field `miscNode'. DefaultMutableTreeNode miscNode = new DefaultMutableTreeNode("Class for <Miscellaneous>"); ^ ./gkcmd/GkCmdHelpMsg.java:99: Type `DefaultTreeModel' not found in the declaration of the local variable `treeModel'. DefaultTreeModel treeModel = new DefaultTreeModel(rootNode); ^ ./gkcmd/GkCmdHelpMsg.java:122: Type `JTextPane' not found in the declaration of the argument `msgPane' of method `initStylesForMsgPane'. private void initStylesForMsgPane(JTextPane msgPane) { ^ ./gkcmd/GkCmdHelpMsg.java:124: Type `Style' not found in the declaration of the local variable `def'. Style def = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE); ^ ./gkcmd/GkCmdHelpMsg.java:126: Type `Style' not found in the declaration of the local variable `regular'. Style regular = msgPane.addStyle("regular", def); ^ ./gkcmd/GkCmdHelpMsg.java:128: Type `Style' not found in the declaration of the local variable `s'. Style s = msgPane.addStyle("cmd", regular); ^ ./gkcmd/GkCmdHelpMsg.java:170: Type `Document' not found in the declaration of the local variable `d'. Document d = msgPane.getDocument(); ^ ./gkcmd/GkCmdHelpMsg.java:208: Type `JButton' not found in the declaration of the local variable `cmdBtn'. JButton cmdBtn = new JButton(" " + token + " "); ^ ./gkcmd/GkCmdHelpMsg.java:221: Type `BadLocationException' not found in the declaration of the local variable `ble'. } catch (BadLocationException ble) { ^ ./gkcmd/GkCmdFindVerboseMsg.java:21: Type `JScrollPane' not found in declaration of field `globalScrollPane'. protected JScrollPane globalScrollPane = new JScrollPane(); ^ ./gkcmd/GkCmdFindVerboseMsg.java:22: Type `JTextPane' not found in declaration of field `msgPane'. protected JTextPane msgPane = new JTextPane(); ^ ./gkcmd/GkCmdFindVerboseMsg.java:85: Type `JTextPane' not found in the declaration of the argument `msgPane' of method `initStylesForMsgPane'. private void initStylesForMsgPane(JTextPane msgPane) { ^ ./gkcmd/GkCmdFindVerboseMsg.java:87: Type `Style' not found in the declaration of the local variable `def'. Style def = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE); ^ ./gkcmd/GkCmdFindVerboseMsg.java:89: Type `Style' not found in the declaration of the local variable `regular'. Style regular = msgPane.addStyle("regular", def); ^ ./gkcmd/GkCmdFindVerboseMsg.java:91: Type `Style' not found in the declaration of the local variable `s'. Style s = msgPane.addStyle("cmd", regular); ^ ./gkcmd/GkCmdFindVerboseMsg.java:120: Type `Document' not found in the declaration of the local variable `d'. Document d = msgPane.getDocument(); ^ ./gkcmd/GkCmdFindVerboseMsg.java:130: Type `BadLocationException' not found in the declaration of the local variable `ble'. } catch (BadLocationException ble) { ^ ./gkcmd/GkCmdFindVerboseMsg.java:137: Type `BadLocationException' not found in the declaration of the local variable `ble'. } catch (BadLocationException ble) { ^ ./gkcmd/GkCmdFindMsg.java:23: Type `JPanel' not found in declaration of field `globalPane'. protected JPanel globalPane = new JPanel(); ^ ./gkcmd/GkCmdFindMsg.java:24: Type `JPanel' not found in declaration of field `epPane'. protected JPanel epPane = new JPanel(); ^ ./gkcmd/GkCmdFindMsg.java:25: Type `JTextPane' not found in declaration of field `msgPane'. protected JTextPane msgPane = new JTextPane(); ^ ./gkcmd/GkCmdFindMsg.java:102: Type `JTextPane' not found in the declaration of the argument `msgPane' of method `initStylesForMsgPane'. private void initStylesForMsgPane(JTextPane msgPane) { ^ ./gkcmd/GkCmdFindMsg.java:104: Type `Style' not found in the declaration of the local variable `def'. Style def = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE); ^ ./gkcmd/GkCmdFindMsg.java:106: Type `Style' not found in the declaration of the local variable `regular'. Style regular = msgPane.addStyle("regular", def); ^ ./gkcmd/GkCmdFindMsg.java:108: Type `Style' not found in the declaration of the local variable `s'. Style s = msgPane.addStyle("cmd", regular); ^ ./gkcmd/GkCmdFindMsg.java:137: Type `Document' not found in the declaration of the local variable `d'. Document d = msgPane.getDocument(); ^ ./gkcmd/GkCmdFindMsg.java:139: Type `JButton' not found in the declaration of the local variable `ep'. JButton ep = new JButton("Test"); ^ ./gkcmd/GkCmdFindMsg.java:151: Type `BadLocationException' not found in the declaration of the local variable `ble'. } catch (BadLocationException ble) { ^ ./gkcmd/GkCmdFindMsg.java:158: Type `BadLocationException' not found in the declaration of the local variable `ble'. } catch (BadLocationException ble) { ^ ./gkcmd/GkCmdConfigMsg.java:26: Type `JTabbedPane' not found in declaration of field `msgTabbedPane'. private JTabbedPane msgTabbedPane = new JTabbedPane(); ^ ./gkcmd/GkCmdConfigMsg.java:64: Type `JScrollPane' not found in the declaration of the local variable `scrollPane'. JScrollPane scrollPane = new JScrollPane(); ^ ./gkcmd/GkCmdConfigMsg.java:65: Type `JPanel' not found in the declaration of the local variable `secPane'. JPanel secPane = new JPanel(); ^ ./gkcmd/GkCmdConfigMsg.java:69: Type `TitledBorder' not found in the declaration of the local variable `border'. TitledBorder border = new TitledBorder(GkCmdConstants.sections[i]); ^ ./gkcmd/GkCmdConfigMsg.java:73: Type `JTextArea' not found in the declaration of the local variable `usage'. JTextArea usage = new JTextArea(); ^ ./gkcmd/GkCmdConfigMsg.java:77: Type `JPanel' not found in the declaration of the local variable `settingPane'. JPanel settingPane = new JPanel(); ^ ./gkcmd/GkCmdConfigMsg.java:81: Type `JPanel' not found in the declaration of the local variable `actionPane'. JPanel actionPane = new JPanel(); ^ ./gkcmd/GkCmdConfigMsg.java:99: Type `JLabel' not found in the declaration of the local variable `columnKey'. JLabel columnKey = new JLabel("Key", SwingConstants.CENTER); ^ ./gkcmd/GkCmdConfigMsg.java:100: Type `JLabel' not found in the declaration of the local variable `columnValue'. JLabel columnValue = new JLabel("Value", SwingConstants.CENTER); ^ ./gkcmd/GkCmdConfigMsg.java:101: Type `JLabel' not found in the declaration of the local variable `columnAction'. JLabel columnAction = new JLabel("Action", SwingConstants.CENTER); ^ ./gkcmd/GkCmdConfigMsg.java:123: Type `JLabel' not found in the declaration of the local variable `key'. JLabel key = new JLabel(keyStr, SwingConstants.LEFT); ^ ./gkcmd/GkCmdConfigMsg.java:124: Type `JTextField' not found in the declaration of the local variable `value'. JTextField value = new JTextField(inputLine.substring(inputLine.indexOf("=") + 1, inputLine.length())); ^ ./gkcmd/GkCmdConfigMsg.java:125: Type `JPanel' not found in the declaration of the local variable `actionPanel'. JPanel actionPanel = new JPanel(); ^ ./gkcmd/GkCmdConfigMsg.java:126: Type `JButton' not found in the declaration of the local variable `actionModifyBtn'. JButton actionModifyBtn = null; ^ ./gkcmd/GkCmdConfigMsg.java:127: Type `JButton' not found in the declaration of the local variable `actionDeleteBtn'. JButton actionDeleteBtn = null; ^ ./gkcmd/GkCmdConfigMsg.java:180: Type `JLabel' not found in the declaration of the local variable `error'. JLabel error = new JLabel(" Maybe the Error Option "); ^ ./gkcmd/GkCmdConfigMsg.java:197: Type `JButton' not found in the declaration of the local variable `addKey'. JButton addKey = new JButton(" Add key "); ^ ./gkcmd/GkCmdConfigMsg.java:198: Type `JButton' not found in the declaration of the local variable `removeKey'. JButton removeKey = new JButton(" Remove key "); ^ ./gkcmd/DebugConsoleFrame.java:21: Superclass `JDialog' of class `omnigkgui.gkcmd.DebugConsoleFrame' not found. public class DebugConsoleFrame extends JDialog implements Runnable { ^ ./gkcmd/DebugConsoleFrame.java:30: Type `JPanel' not found in declaration of field `globalPane'. protected JPanel globalPane = new JPanel(new BorderLayout()); ^ ./gkcmd/DebugConsoleFrame.java:31: Type `JScrollPane' not found in declaration of field `scrollPane'. protected JScrollPane scrollPane; ^ ./gkcmd/DebugConsoleFrame.java:32: Type `JTextArea' not found in declaration of field `debugMessagePane'. protected JTextArea debugMessagePane; ^ ./gkcmd/DebugConsoleFrame.java:33: Type `JTextArea' not found in declaration of field `commandLineInput'. protected JTextArea commandLineInput; ^ ./gkcmd/DebugConsoleFrame.java:55: Type `EtchedBorder' not found in the declaration of the local variable `border'. EtchedBorder border = new EtchedBorder(EtchedBorder.RAISED, Color.cyan, Color.blue); ^ 209 errors find . -name \*.java|xargs javadoc -classpath omnigkgui -d doc xargs: javadoc: No such file or directory make: *** [docs] Error 127 ----------------------------------------------------------------------- Can anyone tell me what is the problem and how to solve it? Thomas _________________________________________________________ 必殺技、飲歌、小星星... 浪漫鈴聲 情心連繫 http://us.rd.yahoo.com/evt=22281/*http://ringtone.yahoo.com.hk/ ------------------------------------------------------- This SF.Net email is sponsored by Sleepycat Software Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver higher performing products faster, at low TCO. http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3 _______________________________________________________ List: Openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Archive: http://sourceforge.net/mailarchive/forum.php?forum_id=8549 Homepage: http://www.gnugk.org/