Uses of Class
org.eclipse.nebula.widgets.opal.duallist.DLItem
-
Packages that use DLItem Package Description org.eclipse.nebula.widgets.opal.duallist org.eclipse.nebula.widgets.opal.duallist.snippets -
-
Uses of DLItem in org.eclipse.nebula.widgets.opal.duallist
Fields in org.eclipse.nebula.widgets.opal.duallist with type parameters of type DLItem Modifier and Type Field Description private java.util.List<DLItem>
DualList. items
private java.util.List<DLItem>
SelectionChangeEvent. items
The items that were selected.private java.util.List<DLItem>
DualList. selection
Methods in org.eclipse.nebula.widgets.opal.duallist that return DLItem Modifier and Type Method Description DLItem
DualList. getItem(int index)
Returns the item at the given, zero-relative index in the receiver.DLItem[]
DualList. getItems()
Returns a (possibly empty) array ofDLItem
s which are the items in the receiver.DLItem[]
DualList. getSelection()
Returns an array ofDLItem
s that are currently selected in the receiver.Methods in org.eclipse.nebula.widgets.opal.duallist that return types with arguments of type DLItem Modifier and Type Method Description java.util.List<DLItem>
SelectionChangeEvent. getItems()
java.util.List<DLItem>
DualList. getItemsAsList()
Returns a (possibly empty) list ofDLItem
s which are the items in the receiver.java.util.List<DLItem>
DualList. getSelectionAsList()
Returns a list ofDLItem
s that are currently selected in the receiver.Methods in org.eclipse.nebula.widgets.opal.duallist with parameters of type DLItem Modifier and Type Method Description void
DualList. add(DLItem item)
Adds the argument to the end of the receiver's list.void
DualList. add(DLItem item, int index)
Adds the argument to the receiver's list at the given zero-relative index.private void
DualList. fireSelectionEvent(DLItem item)
Call all selection listenersvoid
DualList. remove(DLItem item)
Searches the receiver's list starting at the first item until an item is found that is equal to the argument, and removes that item from the list.void
DualList. setItem(int index, DLItem item)
Sets the item in the receiver's list at the given zero-relative index to the item argument.void
DualList. setItems(DLItem[] items)
Sets the receiver's items to be the given array of items.Method parameters in org.eclipse.nebula.widgets.opal.duallist with type arguments of type DLItem Modifier and Type Method Description private void
DualList. fillData(org.eclipse.swt.widgets.Table table, java.util.List<DLItem> listOfData)
Fill a table with dataprivate void
DualList. fireSelectionChangeEvent(java.util.List<DLItem> items)
void
DualList. setItems(java.util.List<DLItem> items)
Sets the receiver's items to be the given list of items.void
SelectionChangeEvent. setItems(java.util.List<DLItem> items)
-
Uses of DLItem in org.eclipse.nebula.widgets.opal.duallist.snippets
Methods in org.eclipse.nebula.widgets.opal.duallist.snippets that return types with arguments of type DLItem Modifier and Type Method Description private static java.util.List<DLItem>
DualListSnippet. createItems(org.eclipse.swt.widgets.Shell shell)
private static java.util.List<DLItem>
DualListTextSnippet. createItems(org.eclipse.swt.widgets.Shell shell)
-