Examples of PlatformFileContext


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

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

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

    if (birtEngine == null)
    {     
        PlatformConfig platformConfig = new PlatformConfig();
          platformConfig.setBIRTHome(birtHome);
         
          IPlatformContext context = new PlatformFileContext(platformConfig);         
      startBirtEngine(context);
    }     
   
    return birtEngine;
  }
View Full Code Here

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

        // set OSGi arguments specific in properties
        String argumentsString = UtilProperties.getPropertyValue(BirtContainer.CONFIG_FILE, "birt.osgi.arguments");
        config.setOSGiArguments(argumentsString.split(","));

        // set platform file context
        config.setPlatformContext(new PlatformFileContext(config));
        config.setAppContext(context);

        // startup platform
        try {
            Debug.logInfo("Startup birt platform", module);
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.