root / src / gZFS / main.java @ 53
Historique | Voir | Annoter | Télécharger (1,2 ko)
1 |
/*******************************************************************
|
---|---|
2 |
*
|
3 |
* Copyright (C) 2013 Kevin Reverchon
|
4 |
* This file/program is part of gZFS free software
|
5 |
* See COPYING file for details
|
6 |
*
|
7 |
*******************************************************************/
|
8 |
package gZFS; |
9 |
|
10 |
import org.apache.log4j.Logger; |
11 |
import org.eclipse.jface.viewers.TreeViewer; |
12 |
import org.eclipse.swt.SWT; |
13 |
import org.eclipse.swt.layout.FillLayout; |
14 |
import org.eclipse.swt.layout.GridData; |
15 |
import org.eclipse.swt.layout.GridLayout; |
16 |
import org.eclipse.swt.widgets.Combo; |
17 |
import org.eclipse.swt.widgets.Display; |
18 |
import org.eclipse.swt.widgets.Label; |
19 |
import org.eclipse.swt.widgets.Shell; |
20 |
import org.eclipse.swt.widgets.TabFolder; |
21 |
import org.eclipse.swt.widgets.TabItem; |
22 |
import org.eclipse.swt.widgets.Composite; |
23 |
import org.eclipse.swt.widgets.Text; |
24 |
import org.eclipse.swt.widgets.Tree; |
25 |
import org.eclipse.swt.widgets.TreeItem; |
26 |
import org.eclipse.jface.layout.TreeColumnLayout; |
27 |
|
28 |
|
29 |
public class main { |
30 |
|
31 |
/**
|
32 |
* Launch the application.
|
33 |
* @param args
|
34 |
*/
|
35 |
Logger log = Logger.getLogger(getClass().getPackage().getName()+" "+getClass().getCanonicalName()); |
36 |
|
37 |
|
38 |
|
39 |
public static void main(String[] args) { |
40 |
gui gui = new gui();
|
41 |
gui.main(null);
|
42 |
|
43 |
} |
44 |
|
45 |
} |