Uses of Class
org.eclipse.nebula.widgets.ctreecombo.CTreeComboItem
-
Packages that use CTreeComboItem Package Description org.eclipse.nebula.widgets.ctreecombo org.eclipse.nebula.widgets.ctreecombo.viewer -
-
Uses of CTreeComboItem in org.eclipse.nebula.widgets.ctreecombo
Fields in org.eclipse.nebula.widgets.ctreecombo declared as CTreeComboItem Modifier and Type Field Description private CTreeComboItem
CTreeComboItem. parentItem
Fields in org.eclipse.nebula.widgets.ctreecombo with type parameters of type CTreeComboItem Modifier and Type Field Description private java.util.List<CTreeComboItem>
CTreeComboItem. childItems
(package private) java.util.List<CTreeComboItem>
CTreeCombo. items
Methods in org.eclipse.nebula.widgets.ctreecombo that return CTreeComboItem Modifier and Type Method Description CTreeComboItem
CTreeCombo. getItem(int index)
Returns the item at the given, zero-relative index in the receiver.CTreeComboItem
CTreeCombo. getItem(org.eclipse.swt.graphics.Point p)
Returns the item at the given point in the receiver or null if no such item exists.CTreeComboItem
CTreeComboItem. getItem(int index)
Returns the item at the given, zero-relative index in the receiver.CTreeComboItem[]
CTreeCombo. getItems()
Returns a (possibly empty) array of items contained in the receiver that are direct item children of the receiver.CTreeComboItem[]
CTreeComboItem. getItems()
Returns a (possibly empty) array ofCTreeComboItem
s which are the direct item children of the receiver.CTreeComboItem
CTreeComboItem. getParentItem()
Returns the receiver's parent item, which must be aCTreeComboItem
or null when the receiver is a root.CTreeComboItem[]
CTreeCombo. getSelection()
Returns an array ofCTreeComboItem
s that are currently selected in the receiver.private CTreeComboItem
CTreeCombo. internalGetSelection()
Methods in org.eclipse.nebula.widgets.ctreecombo with parameters of type CTreeComboItem Modifier and Type Method Description (package private) void
CTreeCombo. createPopup(java.util.Collection<CTreeComboItem> items, CTreeComboItem selectedItem)
private void
CTreeCombo. createTreeItems(CTreeComboItem[] items)
int
CTreeCombo. indexOf(CTreeComboItem item)
Searches the receiver's list starting at the first column (index 0) until a column is found that is equal to the argument, and returns the index of that column.int
CTreeComboItem. indexOf(CTreeComboItem item)
Searches the receiver's list starting at the first item (index 0) until an item is found that is equal to the argument, and returns the index of that item.void
CTreeCombo. select(CTreeComboItem item)
Selects an item in the receiver.void
CTreeCombo. setSelection(CTreeComboItem[] newItems)
Sets the receiver's selection to be the given array of items.void
CTreeCombo. showItem(CTreeComboItem item)
Shows the item.Method parameters in org.eclipse.nebula.widgets.ctreecombo with type arguments of type CTreeComboItem Modifier and Type Method Description (package private) void
CTreeCombo. createPopup(java.util.Collection<CTreeComboItem> items, CTreeComboItem selectedItem)
Constructors in org.eclipse.nebula.widgets.ctreecombo with parameters of type CTreeComboItem Constructor Description CTreeComboItem(CTreeComboItem parentItem, int style)
Constructs a new instance of this class given its parent (which must be aCTreeComboItem
) and a style value describing its behavior and appearance.CTreeComboItem(CTreeComboItem parentItem, int style, int index)
Constructs a new instance of this class given its parent (which must be aCTreeComboItemItem
), a style value describing its behavior and appearance, and the index at which to place it in the items maintained by its parent. -
Uses of CTreeComboItem in org.eclipse.nebula.widgets.ctreecombo.viewer
Fields in org.eclipse.nebula.widgets.ctreecombo.viewer declared as CTreeComboItem Modifier and Type Field Description private CTreeComboItem
CTreeComboViewerRow. item
Methods in org.eclipse.nebula.widgets.ctreecombo.viewer that return CTreeComboItem Modifier and Type Method Description private CTreeComboItem
CTreeComboViewerRow. findLastVisibleItem(CTreeComboItem parentItem)
private CTreeComboItem
CTreeComboViewerRow. findNextItem(CTreeComboItem item)
Methods in org.eclipse.nebula.widgets.ctreecombo.viewer with parameters of type CTreeComboItem Modifier and Type Method Description private org.eclipse.jface.viewers.TreeSelection
CTreeComboViewer. adjustSelectionForReplace(org.eclipse.swt.widgets.Item[] selectedItems, org.eclipse.jface.viewers.TreeSelection selection, CTreeComboItem item, java.lang.Object element, java.lang.Object parentElement)
private CTreeComboItem
CTreeComboViewerRow. findLastVisibleItem(CTreeComboItem parentItem)
private CTreeComboItem
CTreeComboViewerRow. findNextItem(CTreeComboItem item)
(package private) void
CTreeComboViewerRow. setItem(CTreeComboItem item)
private void
CTreeComboViewer. virtualMaterializeItem(CTreeComboItem treeItem)
Constructors in org.eclipse.nebula.widgets.ctreecombo.viewer with parameters of type CTreeComboItem Constructor Description CTreeComboViewerRow(CTreeComboItem item)
Create a new instance of the receiver.
-