Package org.netbeans.modules.scala.project

Examples of org.netbeans.modules.scala.project.J2SEProject


public final class SourceNodeFactory implements NodeFactory {
    public SourceNodeFactory() {
    }
   
    public NodeList createNodes(Project p) {
        J2SEProject project = (J2SEProject)p.getLookup().lookup(J2SEProject.class);
        assert project != null;
        return new SourcesNodeList(project);
    }
View Full Code Here


    /** Creates a new instance of LibrariesNodeFactory */
    public LibrariesNodeFactory() {
    }

    public NodeList createNodes(Project p) {
        J2SEProject project = p.getLookup().lookup(J2SEProject.class);
        assert project != null;
        return new LibrariesNodeList(project);
    }
View Full Code Here

TOP

Related Classes of org.netbeans.modules.scala.project.J2SEProject

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.