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. itemsprivate java.util.List<DLItem>SelectionChangeEvent. itemsThe items that were selected.private java.util.List<DLItem>DualList. selectionMethods in org.eclipse.nebula.widgets.opal.duallist that return DLItem Modifier and Type Method Description DLItemDualList. getItem(int index)Returns the item at the given, zero-relative index in the receiver.DLItem[]DualList. getItems()Returns a (possibly empty) array ofDLItems which are the items in the receiver.DLItem[]DualList. getSelection()Returns an array ofDLItems 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 ofDLItems which are the items in the receiver.java.util.List<DLItem>DualList. getSelectionAsList()Returns a list ofDLItems 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 voidDualList. add(DLItem item)Adds the argument to the end of the receiver's list.voidDualList. add(DLItem item, int index)Adds the argument to the receiver's list at the given zero-relative index.private voidDualList. fireSelectionEvent(DLItem item)Call all selection listenersvoidDualList. 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.voidDualList. setItem(int index, DLItem item)Sets the item in the receiver's list at the given zero-relative index to the item argument.voidDualList. 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 voidDualList. fillData(org.eclipse.swt.widgets.Table table, java.util.List<DLItem> listOfData)Fill a table with dataprivate voidDualList. fireSelectionChangeEvent(java.util.List<DLItem> items)voidDualList. setItems(java.util.List<DLItem> items)Sets the receiver's items to be the given list of items.voidSelectionChangeEvent. 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)
-