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

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


      design.setIconFile("/templates/blank_report.gif");
      design.setFileName("c:/TEMP/sample.rptdesign");
      design.setDefaultUnits("in");
      design.setProperty("comments", "what not and what have you");

      SimpleMasterPageHandle element = efactory
          .newSimpleMasterPage("Page Master");
      DesignElementHandle footerText = efactory.newTextItem("test");
      footerText.setProperty("contentType", "html");
      footerText.setStringProperty("content", "MyTest");

      // Add in a simple page footer to our master page
      element.getPageFooter().add(footerText);

      // try to add the footer to the Master Page
      try {
        design.getMasterPages().add(element);
      } catch (ContentException e) {
View Full Code Here

TOP

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

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.