Changes between Version 2 and Version 3 of ApertureRDFMap


Ignore:
Timestamp:
10/17/05 15:49:52 (19 years ago)
Author:
sauermann
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ApertureRDFMap

    v2 v3  
    2525   * get the RDF model behind this RDFMap. Returns a model that contains the TopResource and other 
    2626   * 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. 
    2831   */ 
    2932  public RDFModel asRDFModel(); 
     
    3336 
    3437}}} 
     38 
     39= Example implementation = 
     40 
     41{{{ 
     42 
     43public 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}}}