Package org.apache.myfaces.el

Examples of org.apache.myfaces.el.ValueBindingImpl$NotVariableReferenceException


    public void testGetSelectItemList()
    {
        UISelectOne uiSelectOne = new UISelectOne();
        uiSelectOne.setId("id1");
        uiSelectOne.setValueBinding("value", new ValueBindingImpl(_application,
                                                                  "#{bean.countryCode}"));

        UISelectItems uiSelectItems = new UISelectItems();
        uiSelectItems.setId("id2");
        uiSelectItems.setValueBinding("value", new ValueBindingImpl(_application,
                                                                  "#{bean.countrySelectItems}"));

        uiSelectOne.getChildren().add(uiSelectItems);

        List lst = RendererUtils.getSelectItemList(uiSelectOne);
View Full Code Here

TOP

Related Classes of org.apache.myfaces.el.ValueBindingImpl$NotVariableReferenceException

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.