Changes between Version 15 and Version 16 of ApertureRDF
- Timestamp:
- 10/27/05 11:33:03 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureRDF
v15 v16 49 49 {{{ 50 50 #!java 51 ValueFactory factory = repository.getValueFactory(); 52 repository.add(docURI, Vocabulary.titleURI, factory.createLiteral(titleString); 53 repository.add(docURI, Vocabulary.fullTextURI, factory.createLiteral(fullText); 51 repository.add(docURI, Vocabulary.titleURI, new LiteralVertex(repository, titleString); 52 repository.add(docURI, Vocabulary.fullTextURI, new LiteralVertex(repository, fullText); 54 53 }}} 55 54