Package org.bladerunnerjs.plugin

Examples of org.bladerunnerjs.plugin.PluginLocator


    return createNonTestModel(brjsDir, logStore, loggerFactory, fileModificationService);
  }
 
  public BRJS createNonTestModel(File brjsDir, LogMessageStore logStore, LoggerFactory loggerFactory, FileModificationService fileModificationService) throws InvalidSdkDirectoryException
  {
    PluginLocator pluginLocator = new BRJSPluginLocator();
    AppVersionGenerator appVersionGenerator = new TimestampAppVersionGenerator();
    BRJS brjs = new BRJS(brjsDir, pluginLocator, loggerFactory, new RealTimeAccessor(), appVersionGenerator);
    brjs.setFileModificationService(fileModificationService);
   
    return brjs;
View Full Code Here

TOP

Related Classes of org.bladerunnerjs.plugin.PluginLocator

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.