Package org.eclipse.birt.report.model.api.elements.structures

Examples of org.eclipse.birt.report.model.api.elements.structures.SelectionChoice


      }
    }
    else {
      Iterator<?> iterator = handle.getListProperty("selectionList").iterator();
      while (iterator.hasNext()) {
        SelectionChoice selectionChoice = (SelectionChoice) iterator.next();
        LabelValueBean bean = new LabelValueBean(selectionChoice.getLabel(), selectionChoice.getValue());
        v.add(bean);
      }
    }
   
    options = new LabelValueBean[v.size()];
View Full Code Here

TOP

Related Classes of org.eclipse.birt.report.model.api.elements.structures.SelectionChoice

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.