참고 : http://wiki.eclipse.org/Older_Versions_Of_Eclipse
- Galileo(3.5.2) 원격 업데이트 사이트 : http://download.eclipse.org/releases/galileo
org.eclipse.jface
org.eclipse.core.commands
org.eclipse.equinox.common
org.eclipse.swt
org.eclipse.swt.widgets and org.eclipse.swt.custom packages (unless otherwise noted, the controls I discuss are in the widgets package). For background, it is assumed you have read at least the first installment of this series, "How to create a simple SWT application."org.eclipse.swt.custom and org.eclipse.swt.widgets packages. Unless otherwise noted, the controls I discuss are in the widgets package.custom package, called TableTree. In Eclipse V3.1, the Tree control was enhanced to be a functional replacement for TableTree, and TableTree was deprecated. Figure 1 shows an example Tree in tabular format (TableTree emulation mode). As you can see, each item in the tree is divided into columns. As the creation of both tables and trees were shown previously, and creating a tabular Tree is basically a combination of these two tasks, I will not repeat them here. The Tree sample included with this article demonstrates the creation of a tabular Tree. The code for creating a TableTree is very similar to the code I include for Tree, so if you need support for older versions of Eclipse, you can use the TableTree control.org.eclipse.swt.widgets package.BAR acts as the menu bar for the shellDROP_DOWN drops down from the menu bar or a menu itemPOP_UP pops up from the shell, but is contextual to a specific controlNO_RADIO_GROUP does not act as a radio group; use it when the menu contains RADIO-style itemsLEFT_TO_RIGHT or RIGHT_TO_LEFT selects the text directionCHECK can be persistently selected (that is, checked)CASCADE contains a menu that should drop downPUSH acts like a button that causes an immediate actionRADIO acts like a CHECK where only one of the items with this type can be selectedSEPARATOR acts as a separator (often a bar) between groups of items; this item has no function