Package org.eclipse.birt.core.framework

Examples of org.eclipse.birt.core.framework.PlatformConfig


    //
  }
 
  public BirtProvider(DirectoryProvider directoryProvider)
  {
      PlatformConfig platformConfig = new PlatformConfig();
        platformConfig.setBIRTHome(directoryProvider.getReportDirectory() + "platform");
       
        IPlatformContext context = new PlatformFileContext(platformConfig);       
    startBirtEngine(context);
  }
View Full Code Here


   
  public static synchronized IReportEngine getBirtEngine(String birtHome)
  {
    if (birtEngine == null)
    {     
        PlatformConfig platformConfig = new PlatformConfig();
          platformConfig.setBIRTHome(birtHome);
         
          IPlatformContext context = new PlatformFileContext(platformConfig);         
      startBirtEngine(context);
    }     
   
View Full Code Here

TOP

Related Classes of org.eclipse.birt.core.framework.PlatformConfig

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.