Instances of this class allow to export rdf-annotated Evolizer models to rdf. Objects intended to be exported need to be annotated correctly (see {@link org.evolizer.ontology.annotations.rdf}) and have to respond to
getId()
by returning an unique identifier (unique for all instances of their Java class).
Usage:
List<MyObject> result = session.query("from MyObject); Exporter exporter = new Exporter(); for(MyObject object : result) { exporter.export(object); } exporter.writeModel();
TODO Individuals should also incorporate project/cvs url, otherwise the URI is not really valid (because it is not an unique identifier) TODO Inference?
@author wuersch