latest releases of Jena, ARQ, SDB, and Pellet libraries

This commit is contained in:
bjl23 2010-11-05 17:45:57 +00:00
parent 7e4499778c
commit 0dc6abfe61
35 changed files with 25 additions and 4 deletions

View file

@ -2986,4 +2986,13 @@ public class RegeneratingModel implements OntModel {
}
}
public Resource wrapAsResource(Node arg0) {
try {
return model.wrapAsResource(arg0);
} catch (Exception e) {
regenerate();
return model.wrapAsResource(arg0);
}
}
}

View file

@ -132,7 +132,7 @@ public class EditLiteral implements Literal {
throw new UnsupportedOperationException();
}
public RDFNode inModel(Model model) {
public Literal inModel(Model model) {
throw new UnsupportedOperationException();
}
@ -191,9 +191,9 @@ public class EditLiteral implements Literal {
}
@Deprecated
public Object getObject(ObjectF arg0) {
throw new UnsupportedOperationException();
}
//public Object getObject(ObjectF arg0) {
// throw new UnsupportedOperationException();
//}
public <T extends RDFNode> T as(Class<T> arg0) {
throw new UnsupportedOperationException();
@ -202,4 +202,16 @@ public class EditLiteral implements Literal {
public <T extends RDFNode> boolean canAs(Class<T> arg0) {
throw new UnsupportedOperationException();
}
public Literal asLiteral() {
throw new UnsupportedOperationException();
}
public Resource asResource() {
throw new UnsupportedOperationException();
}
public Model getModel() {
throw new UnsupportedOperationException();
}
}