コード例 #1
0
 public Property readProperty(Reader reader) throws Exception {
   return RepositoryParser.getParser().parseProperty(reader);
 }
コード例 #2
0
 public Requirement readRequirement(Reader reader) throws Exception {
   return RepositoryParser.getParser().parseRequirement(reader);
 }
コード例 #3
0
 public Resource readResource(Reader reader) throws Exception {
   return RepositoryParser.getParser().parseResource(reader);
 }
コード例 #4
0
 public Capability readCapability(Reader reader) throws Exception {
   return RepositoryParser.getParser().parseCapability(reader);
 }
コード例 #5
0
 public RepositoryImpl repository(InputStream is) throws Exception {
   RepositoryParser parser = RepositoryParser.getParser();
   RepositoryImpl repository = parser.parseRepository(is);
   return repository;
 }