Uses of Class
org.jminor.common.model.Item

Packages that use Item
org.jminor.common.model   
org.jminor.common.model.combobox   
org.jminor.common.ui.input   
org.jminor.framework.domain   
 

Uses of Item in org.jminor.common.model
 

Methods in org.jminor.common.model with parameters of type Item
 int Item.compareTo(Item<T> o)
          Compares this item with the given item according to the caption.
 

Uses of Item in org.jminor.common.model.combobox
 

Subclasses of Item in org.jminor.common.model.combobox
static class ItemComboBoxModel.IconItem<T>
          An IconItem to use in a ItemComboBoxModel.
 

Methods in org.jminor.common.model.combobox that return Item
 Item<T> ItemComboBoxModel.getSelectedItem()
          
 

Method parameters in org.jminor.common.model.combobox with type arguments of type Item
protected  void ItemComboBoxModel.initializeItems(List<Item<T>> items)
           
 

Constructors in org.jminor.common.model.combobox with parameters of type Item
ItemComboBoxModel(Item<T>... items)
          Constructs a new ItemComboBoxModel
 

Constructor parameters in org.jminor.common.model.combobox with type arguments of type Item
ItemComboBoxModel(List<Item<T>> items)
          Constructs a new ItemComboBoxModel
 

Uses of Item in org.jminor.common.ui.input
 

Constructor parameters in org.jminor.common.ui.input with type arguments of type Item
ValueListInputProvider(Object initialValue, List<Item<Object>> values)
          Instantiates a new ValueListInputProvider.
 

Uses of Item in org.jminor.framework.domain
 

Methods in org.jminor.framework.domain that return types with arguments of type Item
 List<Item<Object>> Property.ValueListProperty.getValues()
           
 

Method parameters in org.jminor.framework.domain with type arguments of type Item
static Property.ValueListProperty Properties.valueListProperty(String propertyID, int type, String caption, List<Item<Object>> values)