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