Example usage for Java org.eclipse.jface.viewers ComboViewer fields, constructors, methods, implement or subclass
The text is from its open source code.
ComboViewer(Composite parent) Creates a combo viewer on a newly-created combo control under the given parent. | |
ComboViewer(Combo list) Creates a combo viewer on the given combo control. | |
ComboViewer(CCombo list) Creates a combo viewer on the given CCombo control. | |
ComboViewer(Composite parent, int style) Creates a combo viewer on a newly-created combo control under the given parent. |
void | add(Object... elements) Adds the given elements to this list viewer. |
CCombo | getCCombo() Returns this list viewer's list control. |
Combo | getCombo() Returns this list viewer's list control. |
Control | getControl() |
Object | getElementAt(int index) Returns the element with the given index from this list viewer. |
IBaseLabelProvider | getLabelProvider() The list viewer implementation of this Viewer framework method returns the label provider, which in the case of list viewers will be an instance of ILabelProvider . |
void | setLabelProvider(IBaseLabelProvider labelProvider) The list viewer implementation of this Viewer framework method ensures that the given label provider is an instance of ILabelProvider . |