I'm using the OWL API for manipulating ontologies. I want to create my own Java objects corresponding to OWLObjects (e.g., OWLEntity, OWLClass, etc.). How can I do this?
To achieve this, I think I need to know how to get a name (String) of an OWLEntity object. But how? I've searched OWL API Javadoc and tutorials but can't find out how.
public class Arg {
private String name;
private String defaultValue;
private boolean isEssential = false;
private Set<String> preArgNames;
public Arg(String name, String defaultValue, boolean isEssential,
Set<String> preArgNames) {
this.name = name;
this.defaultValue = defaultValue;
this.isEssential = isEssential;
this.preArgNames = preArgNames;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isEssential() {
return isEssential;
}
public void setEssential(boolean isEssential) {
this.isEssential = isEssential;
}
public Set<String> getPreArgNames() {
return preArgNames;
}
public void setPreArgNames(Set<String> preArgNames) {
this.preArgNames = preArgNames;
}
public String getDefaultValue() {
return defaultValue;
}
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
}
I have a data structure for my application. And data is stored in the ontology. I've added my code example above.
That member variables of Arg object must be filled by ontology data. e.g. Class SomeArg1, SomeArg2,... and it have children classes and restrictions in the ontology and I want to get the entity name, and associated restrictions, etc. to fill the appropriate variables of Arg object.
In this example in line 1093, the method
printNode(Node<OWLClass> node)
shows how to get the name of an entity. In brief you can define your prefix manager and use that to print the name of the entity you want.Otherwise you can use the following method:
So if you have an entity which name is
http://www.co-ode.org/ontologies/pizza/pizza.owl#Pizza
, then the previous code will print:Namespace: http://www.co-ode.org/ontologies/pizza/pizza.owl# Fragment: Pizza