blob: 7cf54cb45d84ca4bb4420f88241e7a6c388e19a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package com.c2kernel.gui;
import com.c2kernel.process.Gateway;
import com.c2kernel.process.StandardClient;
import com.c2kernel.utils.Logger;
/**
*
* @version $Revision: 1.15 $ $Date: 2004/10/26 11:33:56 $
* @author $Author: abranson $
*/
public class Main extends StandardClient
{
static public void main(String[] args)
{
try
{
Gateway.init(readC2KArgs(args), false);
Logger.initConsole("GUI");
MainFrame client = new MainFrame();
client.showLogin();
}
catch( Exception ex )
{
Logger.error(ex);
try
{
Gateway.close();
}
catch(Exception ex1)
{
Logger.error(ex1);
}
}
}
}
|