Package org.erlide.engine.new_model.internal

Examples of org.erlide.engine.new_model.internal.ErlProject


        boolean _hasNature = project.hasNature(IErlProject.NATURE_ID);
        _and = _hasNature;
      }
      if (_and) {
        ErlangProjectProperties _projectProperties = this.getProjectProperties(project);
        ErlProject _erlProject = new ErlProject(this, project, _projectProperties);
        erlProjects.add(_erlProject);
      }
    }
    body.setChildren(((IHandle[])Conversions.unwrapArray(erlProjects, IHandle.class)));
  }
View Full Code Here


 
  public IErlProject getProject(final String name) {
    IWorkspaceRoot _root = this.workspace.getRoot();
    IProject _project = _root.getProject(name);
    ErlangProjectProperties _erlangProjectProperties = new ErlangProjectProperties();
    return new ErlProject(this, _project, _erlangProjectProperties);
  }
View Full Code Here

TOP

Related Classes of org.erlide.engine.new_model.internal.ErlProject

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.