Changes between Version 2 and Version 3 of ApertureRDFMap
- Timestamp:
- 10/17/05 15:49:52 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureRDFMap
v2 v3 25 25 * get the RDF model behind this RDFMap. Returns a model that contains the TopResource and other 26 26 * resources. 27 * TODO: we have no clue which model to use. The new sesame2 api has no convenience methods at all, and shifts everything into the Model-Transaction. which leaves us with RDF2GO by Max Völkel or Melniks RDF model. Both are cludgy, but RDF2Go might have a good trade-off. 27 * TODO: we have no clue which model to use. 28 The new sesame2 api has no convenience methods at all, and shifts everything 29 into the Model-Transaction. which leaves us with RDF2GO by Max Völkel or Melniks RDF model. 30 Both are cludgy, but RDF2Go might have a good trade-off. 28 31 */ 29 32 public RDFModel asRDFModel(); … … 33 36 34 37 }}} 38 39 = Example implementation = 40 41 {{{ 42 43 public class SimpleRDFMap implements RDFMap { 44 45 /** 46 * create a new simplerdfmap, passing the uri of the top-resource. 47 * use the uri the extraction method had as input. 48 */ 49 public RDFMap(String uri){ 50 51 } 52 53 } 54 55 }}}