Package org.infoglue.deliver.applications.databeans

Examples of org.infoglue.deliver.applications.databeans.ComponentPropertyOption


            while(optionListIterator.hasNext())
            {
              Element option = (Element)optionListIterator.next();
              String optionName  = option.attributeValue("name");
              String optionValue  = option.attributeValue("value");
              ComponentPropertyOption cpo = new ComponentPropertyOption();
              cpo.setName(optionName);
              cpo.setValue(optionValue);
              property.getOptions().add(cpo);
            }
           
            //logger.info("value:" + value);
            property.setValue(value);
View Full Code Here

TOP

Related Classes of org.infoglue.deliver.applications.databeans.ComponentPropertyOption

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.