|
|
ClientFrame.java:104: cannot resolve symbol
symbol : variable ConnectToDialog
location: class client.ClientFrame
String[] r = ConnectToDialog.showConnectToDialog(this);
^
ClientFrame.java:107: cannot resolve symbol
symbol : class ScreenPanel
location: class client.ClientFrame
tabbedPane.add(r[0], new JScrollPane(new ScreenPanel(r)));
^
ClientFrame.java:129: cannot resolve symbol
symbol : class ScreenPanel
location: class client.ClientFrame
((ScreenPanel) (js.getViewport().getView())).exit();
^
3 errors
RemoteServer.java:36: cannot resolve symbol
symbol : class OutputProcessor
location: class server.ControlServer
new Thread(new OutputProcessor(i)).start();
^
RemoteServer.java:37: cannot resolve symbol
symbol : class InputProcessor
location: class server.ControlServer
new Thread(new InputProcessor(i)).start();
^
2 errors
有谁知道这几个错误怎么改吗? |
|