Package workspace

Examples of workspace.ProjectManager


     *
     * Use Utils to get the object that this class can analyze.
     */
    public void visit(final HaxeTree searchFor)
    {
        ProjectManager prManager = Activator.getProjectManager();
       
        foundResult = new HashMapForLists<NodeLink>();
        project = prManager.getCurrentHaxeProject();
       
        HashMap<String, CodeFile> fullList = project.getFiles();
       
        currFile = prManager.getCurrentFile();
        analyseSearchedObject(searchFor);
       
        for (CodeFile file : fullList.values())
        {
            currFile = file;
View Full Code Here

TOP

Related Classes of workspace.ProjectManager

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.