Lines Matching defs:prop

65     public boolean hasProperty(OWLProperty prop) {

66 return individual.hasProperty(prop);
69 public boolean hasProperty(OWLProperty prop, OWLValue value) {
70 return individual.hasProperty(prop, value);
77 public OWLIndividual getProperty(OWLObjectProperty prop) {
78 return individual.getProperty(prop);
81 protected OWLIndividualList getPropertiesAs(OWLObjectProperty prop, Class result) {
82 return new CastingList(individual.getProperties(prop), result);
85 protected OWLObject getPropertyAs(OWLObjectProperty prop, Class result) {
86 OWLObject value = individual.getProperty(prop);
90 protected OWLObject getPropertyAs(OWLDataProperty prop, Class result) {
91 OWLObject value = individual.getProperty(prop);
95 protected String getPropertyAsString(OWLDataProperty prop) {
96 OWLDataValue value = individual.getProperty(prop);
100 protected String getPropertyAsString(OWLDataProperty prop, String lang) {
101 OWLDataValue value = individual.getProperty(prop, lang);
105 protected URI getPropertyAsURI(OWLDataProperty prop) {
106 OWLDataValue value = individual.getProperty(prop);
110 protected URL getPropertyAsURL(OWLDataProperty prop) {
111 OWLDataValue value = individual.getProperty(prop);
126 public OWLIndividualList getProperties(OWLObjectProperty prop) {
127 return individual.getProperties(prop);
133 public OWLDataValue getProperty(OWLDataProperty prop) {
134 return individual.getProperty(prop);
140 public OWLDataValue getProperty(OWLDataProperty prop, String lang) {
141 return individual.getProperty(prop, lang);
144 public OWLDataValueList getProperties(OWLDataProperty prop) {
145 return individual.getProperties(prop);
152 public OWLIndividual getIncomingProperty(OWLObjectProperty prop) {
153 return individual.getIncomingProperty(prop);
156 public OWLIndividualList getIncomingProperties(OWLObjectProperty prop) {
157 return individual.getIncomingProperties(prop);
160 public void setProperty(OWLDataProperty prop, String value) {
161 individual.setProperty(prop, value);
164 public void setProperty(OWLDataProperty prop, Object value) {
165 individual.setProperty(prop, value);
168 public void setProperty(OWLDataProperty prop, OWLDataValue value) {
169 individual.setProperty(prop, value);
172 public void addProperty(OWLDataProperty prop, OWLDataValue value) {
173 individual.addProperty(prop, value);
176 public void addProperty(OWLDataProperty prop, Object value) {
177 individual.addProperty(prop, value);
180 public void addProperty(OWLDataProperty prop, String value) {
181 individual.addProperty(prop, value);
184 public void removeProperties(OWLProperty prop) {
185 individual.removeProperties(prop);
192 public void addProperty(OWLObjectProperty prop, OWLIndividual value) {
193 individual.addProperty(prop, value);
196 public void setProperty(OWLObjectProperty prop, OWLIndividual value) {
197 individual.setProperty(prop, value);
278 public OWLDataValue getAnnotation(URI prop) {
279 return individual.getAnnotation(prop);
285 public OWLDataValue getAnnotation(URI prop, String lang) {
286 return individual.getAnnotation(prop, lang);
292 public OWLDataValueList getAnnotations(URI prop) {
293 return individual.getAnnotations(prop);
299 public void addAnnotation(URI prop, OWLDataValue value) {
300 individual.addAnnotation(prop, value);
306 public void addAnnotation(URI prop, String value) {
307 individual.addAnnotation(prop, value);
313 public void addAnnotation(URI prop, String value, String lang) {
314 individual.addAnnotation(prop, value, lang);
320 public void setAnnotation(URI prop, OWLDataValue value) {
321 individual.setAnnotation(prop, value);
327 public void setAnnotation(URI prop, String value) {
328 individual.setAnnotation(prop, value);
334 public void setAnnotation(URI prop, String value, String lang) {
335 individual.addAnnotation(prop, value, lang);
341 public void removeAnnotations(URI prop) {
342 individual.removeAnnotations(prop);