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

Examples of org.eclipse.birt.report.model.api.ScalarParameterHandle.distinct()


          reportParamDisplayForm.setType(handle.getDataType());
          reportParamDisplayForm.setRequired("Y");
         
          if (handle.getControlType().equals(DesignChoiceConstants.PARAM_CONTROL_LIST_BOX)) {
            LabelValueBean values[] = engine.getReportParameterOptions(definition);
            if (handle.distinct()) {
              Vector<LabelValueBean> valueVector = new Vector<LabelValueBean>();
              for (LabelValueBean value : values) {
                boolean found = false;
                Enumeration<LabelValueBean> enumeration = valueVector.elements();
                while (enumeration.hasMoreElements()) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.