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);
}