Package ee.ut.goblin

Examples of ee.ut.goblin.TreeAnalysisMap


      if (input instanceof ViewInput) {
        ViewInput in = (ViewInput) input;
        setContentDescription("Analysis Result - " + input.toString());
        try {
          // try to get analysis map, that we generated earlier
          TreeAnalysisMap map = (TreeAnalysisMap) in.file.getProject().getSessionProperty(GoblinPlugin.RESULT_NAME);
         
          // analysis not yet done or map generation failed
          if (map == null)
            return failNode;
         
          // get needed info
          TreeLoc tl = map.getAnalysis(in.file.getName(), in.sLine);
         
          if (tl == null)
            return failNode;
          else{
            return tl.getChildren();
View Full Code Here

TOP

Related Classes of ee.ut.goblin.TreeAnalysisMap

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.