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

Examples of org.eclipse.birt.report.model.api.ReportDesignHandle.findParameter()


    }


    //Get report design and find default value, prompt text and data set expression using the DE API
    ReportDesignHandle reportHandle = ( ReportDesignHandle ) report.getDesignHandle( );
    ScalarParameterHandle parameterHandle = (ScalarParameterHandle) reportHandle.findParameter( scalar.getName() );
    parameter.put("Default Value", parameterHandle.getDefaultValue());
    parameter.put("Prompt Text", parameterHandle.getPromptText());
    parameter.put("Data Set Expression", parameterHandle.getValueExpr());

    if(scalar.getControlType() !=  IScalarParameterDefn.TEXT_BOX)
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.