Merge branch 'maint-rel-1.7' into develop
This commit is contained in:
commit
114cf33af9
1 changed files with 12 additions and 4 deletions
|
@ -55,7 +55,8 @@ public class IndividualStub implements Individual {
|
||||||
dpsSet.add(new DataPropertyStatementImpl(this.uri, predicateUri, object));
|
dpsSet.add(new DataPropertyStatementImpl(this.uri, predicateUri, object));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addObjectPropertyStatement(ObjectProperty property, String objectUri) {
|
public void addObjectPropertyStatement(ObjectProperty property,
|
||||||
|
String objectUri) {
|
||||||
ObjectPropertyStatementImpl ops = new ObjectPropertyStatementImpl();
|
ObjectPropertyStatementImpl ops = new ObjectPropertyStatementImpl();
|
||||||
ops.setSubject(this);
|
ops.setSubject(this);
|
||||||
ops.setProperty(property);
|
ops.setProperty(property);
|
||||||
|
@ -493,4 +494,11 @@ public class IndividualStub implements Individual {
|
||||||
throw new RuntimeException(
|
throw new RuntimeException(
|
||||||
"Individual.setSearchSnippet() not implemented.");
|
"Individual.setSearchSnippet() not implemented.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setRdfsLabel(String in) {
|
||||||
|
throw new RuntimeException(
|
||||||
|
"IndividualStub.setRdfsLabel() not implemented.");
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue