root / src / gZFS / main.java @ 28
Historique | Voir | Annoter | Télécharger (963 octet)
1 |
package gZFS; |
---|---|
2 |
|
3 |
import org.apache.log4j.Logger; |
4 |
import org.eclipse.jface.viewers.TreeViewer; |
5 |
import org.eclipse.swt.SWT; |
6 |
import org.eclipse.swt.layout.FillLayout; |
7 |
import org.eclipse.swt.layout.GridData; |
8 |
import org.eclipse.swt.layout.GridLayout; |
9 |
import org.eclipse.swt.widgets.Combo; |
10 |
import org.eclipse.swt.widgets.Display; |
11 |
import org.eclipse.swt.widgets.Label; |
12 |
import org.eclipse.swt.widgets.Shell; |
13 |
import org.eclipse.swt.widgets.TabFolder; |
14 |
import org.eclipse.swt.widgets.TabItem; |
15 |
import org.eclipse.swt.widgets.Composite; |
16 |
import org.eclipse.swt.widgets.Text; |
17 |
import org.eclipse.swt.widgets.Tree; |
18 |
import org.eclipse.swt.widgets.TreeItem; |
19 |
import org.eclipse.jface.layout.TreeColumnLayout; |
20 |
|
21 |
|
22 |
public class main { |
23 |
|
24 |
/**
|
25 |
* Launch the application.
|
26 |
* @param args
|
27 |
*/
|
28 |
Logger log = Logger.getLogger(getClass().getPackage().getName()+" "+getClass().getCanonicalName()); |
29 |
|
30 |
|
31 |
|
32 |
public static void main(String[] args) { |
33 |
gui gui = new gui();
|
34 |
gui.main(null);
|
35 |
|
36 |
} |
37 |
|
38 |
} |