Package org.omnifaces.model

Examples of org.omnifaces.model.ExtendedSelectItem


          selectItems.add((SelectItem)value);
        } else if (uiSelectItem.getValue() == null) {

          // No value binding specified, create a select item out of the properties
          // of the UI component.
          selectItems.add(new ExtendedSelectItem(uiSelectItem));
        } else {

          // A value binding was specified, but of a type we don't support.
          throw new IllegalArgumentException(String.format(ERROR_UNKNOWN_SELECT_TYPE, value.getClass().toString()));
        }
View Full Code Here

TOP

Related Classes of org.omnifaces.model.ExtendedSelectItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.