com.hp.hpl.jena.rdf.model.ModelCon.addLiteral(Resource, Property, Object)
Freshly (should have been done a while ago)
|
com.hp.hpl.jena.rdf.model.ModelCon.createResource(ResourceF) |
com.hp.hpl.jena.rdf.model.ModelCon.createResource(String, ResourceF) |
com.hp.hpl.jena.util.FileUtils.encodeFileName(String)
Broken: use toURL()
|
com.hp.hpl.jena.rdf.model.Alt.getDefaultResource(ResourceF) |
com.hp.hpl.jena.ontology.OntModel.getModelMaker()
use getImportModelMaker instead for consistency with name
changes to OntModelSpec to avoid ambiguity with base vs import makers.
|
com.hp.hpl.jena.rdf.model.Seq.getResource(int, ResourceF) |
com.hp.hpl.jena.rdf.model.Statement.getResource(ResourceF) |
com.hp.hpl.jena.rdf.model.ModelCon.getResource(String, ResourceF) |
com.hp.hpl.jena.util.ModelLoader.guessLang(String)
Use FileUtils.guessLang
|
com.hp.hpl.jena.util.ModelLoader.guessLang(String, String)
Use FileUtils.guessLang
|
com.hp.hpl.jena.ontology.OntModel.listImportedModels()
This method has been re-named to listSubModels ,
but note that to obtain the same behaviour as listImportedModels
from Jena 2.4 and earlier, callers should invoke OntModel.listSubModels(boolean)
with parameter true .
|
com.hp.hpl.jena.util.ModelLoader.loadModel(Model, String)
Use FileManager.get().readModel(model, urlStr) instead
|
com.hp.hpl.jena.util.ModelLoader.loadModel(Model, String, String)
Use FileManager.get().readModel(model, urlStr, lang) instead
|
com.hp.hpl.jena.util.ModelLoader.loadModel(String)
Use FileManager.get().loadModel(urlStr)
|
com.hp.hpl.jena.util.ModelLoader.loadModel(String, String)
Use FileManager.get().loadModel(urlStr, lang)
|
com.hp.hpl.jena.util.FileManager.remap(String)
Use mapURI
|
com.hp.hpl.jena.rdf.model.RDFList.removeAll()
|
com.hp.hpl.jena.util.FileManager.setMapper(LocationMapper)
Use setLocationMapper
|