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

Examples of org.eclipse.birt.report.model.api.ResultSetColumnHandle


        // get the columns from the selected dataset
        List columnList = new ArrayList();
        for (Iterator i = dataSetHandleToUse.getCachedMetaDataHandle()
            .getResultSet().iterator(); i.hasNext();) {
          ResultSetColumnHandle colInfo = (ResultSetColumnHandle) i
              .next();

          columnList.add(colInfo.getColumnName());
        }

        // create new table, set the data set
        TableHandle reportTable = reportDesign.getElementFactory()
            .newTableItem(
View Full Code Here

TOP

Related Classes of org.eclipse.birt.report.model.api.ResultSetColumnHandle

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.