Examples of OORexxPackage


Examples of org.oorexx.language.OORexxPackage

      CommentRemover.currentFile = file;
     
      OORexxDirectiveParser directiveParser = new OORexxDirectiveParser(CommentRemover.remove(content), property, file);
      Map<String, OORexxDirective> map = directiveParser.getDirectiveMap();
       
      OORexxPackage container = new OORexxPackage();
        container.setFile(file);
        container.setName(file.getName());
       
        for(String key: map.keySet()){
          OORexxDirective commentAble = map.get(key);
          container.appendCommentAble(commentAble);
        }
       
      this.containers.add(container);
    }
   
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.