Package org.objectstyle.wolips.jdt.classpath.model

Examples of org.objectstyle.wolips.jdt.classpath.model.EclipseFrameworkModel.shouldReload()


   * @return Returns the classpathModel.
   */
  public synchronized EclipseFrameworkModel getFrameworkModel(IProject project) {
    String projectName = project != null ? project.getName() : null;
    EclipseFrameworkModel frameworkModel = this.frameworkModels.get(projectName);
    if (frameworkModel == null || frameworkModel.shouldReload()) {
      frameworkModel = new EclipseFrameworkModel(project);
      this.frameworkModels.put(projectName, frameworkModel);
    }
    return frameworkModel;
  }
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.