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

Binary file not shown.

BIN
webapp/lib/arq-2.8.5.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
webapp/lib/icu4j-3.4.4.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
webapp/lib/sdb-1.3.2.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

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();
}
}