.. | .. |
---|
14 | 14 | //DragSourceListener, |
---|
15 | 15 | DropTargetListener |
---|
16 | 16 | { |
---|
17 | | - cTree jTree = new cTree(null); |
---|
| 17 | + cTree jTree = new cTree(); |
---|
18 | 18 | iCallBack owner; |
---|
19 | 19 | |
---|
20 | 20 | JButton refreshButton; |
---|
.. | .. |
---|
26 | 26 | JCheckBox stripCB; |
---|
27 | 27 | JCheckBox genUVCB; |
---|
28 | 28 | |
---|
29 | | - JCheckBox mergeAttributesCB; |
---|
| 29 | + cCheckBox mergeAttributesCB; |
---|
30 | 30 | |
---|
31 | 31 | cFileSystemPane(iCallBack o) |
---|
32 | 32 | { |
---|
33 | 33 | owner = o; |
---|
34 | 34 | |
---|
35 | | - setName("File system"); |
---|
| 35 | + setName("Files"); |
---|
36 | 36 | //System.out.println("layout : " + getLayout()); |
---|
37 | 37 | //setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); |
---|
38 | 38 | //setLayout(new GridBagLayout()); |
---|
.. | .. |
---|
62 | 62 | |
---|
63 | 63 | cGridBag fileCommsnds = new cGridBag(); |
---|
64 | 64 | |
---|
65 | | - fileCommsnds.add(refreshButton = new JButton("Refresh")); //, aConstraints); |
---|
66 | | - refreshButton.setToolTipText("Refresh entire tree"); |
---|
67 | 65 | fileCommsnds.add(loadButton = new JButton("Load")); //, aConstraints); |
---|
68 | 66 | loadButton.setToolTipText("Load selected file(s)"); |
---|
| 67 | + fileCommsnds.add(refreshButton = new JButton("Refresh")); //, aConstraints); |
---|
| 68 | + refreshButton.setToolTipText("Refresh entire tree"); |
---|
69 | 69 | |
---|
70 | 70 | refreshButton.addActionListener(this); |
---|
71 | 71 | loadButton.addActionListener(this); |
---|