|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RDFProperty | |
|---|---|
| com.ontotext.gate.vr | |
| gate.creole.ontology | The GATE ontology API. |
| gate.gui.docview | |
| gate.gui.ontology | |
| Uses of RDFProperty in com.ontotext.gate.vr |
|---|
| Methods in com.ontotext.gate.vr with parameters of type RDFProperty | |
|---|---|
void |
Gaze.resourcePropertyValueChanged(Ontology ontology,
OResource resource,
RDFProperty property,
Object value,
int eventType)
|
| Uses of RDFProperty in gate.creole.ontology |
|---|
| Subinterfaces of RDFProperty in gate.creole.ontology | |
|---|---|
interface |
AnnotationProperty
An Annotation property. |
interface |
DatatypeProperty
Interface for datatype properties. |
interface |
ObjectProperty
ObjectProperty is a sub type of the RDFProperty. |
interface |
SymmetricProperty
Every SymmetricProperty is ObjectProperty. |
interface |
TransitiveProperty
Interface for transitive properties. |
| Methods in gate.creole.ontology that return RDFProperty | |
|---|---|
RDFProperty |
Ontology.addRDFProperty(OURI aPropertyURI,
Set<OResource> domain,
Set<OResource> range)
Deprecated. |
RDFProperty |
Restriction.getOnPropertyValue()
Return the property on which the restriction is specified |
RDFProperty |
Ontology.getProperty(OURI thePropertyURI)
Returns the property for a given URI or null if there is no property with that URI. |
| Methods in gate.creole.ontology that return types with arguments of type RDFProperty | |
|---|---|
Set<RDFProperty> |
OResource.getAllSetProperties()
This method returns all the set properties set on this resource. |
Set<RDFProperty> |
RDFProperty.getEquivalentPropertyAs()
Returns a set of all RDFProperty instances that are in EquivalentPropertyAs relation with this property. |
Set<RDFProperty> |
OResource.getPropertiesWithResourceAsDomain()
This method returns a set of all properties where the current resource has been specified as one of the domain resources. |
Set<RDFProperty> |
OResource.getPropertiesWithResourceAsRange()
This method returns a set of all properties where the current resource has been specified as one of the range resources. |
Set<RDFProperty> |
Ontology.getPropertyDefinitions()
Gets the set of RDF, Object, Datatype, Symmetric and Transitive property definitions in this ontology. |
Set<RDFProperty> |
Ontology.getRDFProperties()
Gets the set of RDF Properties in the ontology where for a property there exists a statement |
Set<RDFProperty> |
OInstance.getSetRDFProperties()
This method returns the RDF properties set on this resource. |
Set<RDFProperty> |
RDFProperty.getSubProperties(byte closure)
Deprecated. |
Set<RDFProperty> |
RDFProperty.getSubProperties(OConstants.Closure closure)
|
Set<RDFProperty> |
RDFProperty.getSuperProperties(byte closure)
Deprecated. |
Set<RDFProperty> |
RDFProperty.getSuperProperties(OConstants.Closure closure)
|
| Methods in gate.creole.ontology with parameters of type RDFProperty | |
|---|---|
AllValuesFromRestriction |
Ontology.addAllValuesFromRestriction(RDFProperty onProperty,
OResource hasValue)
Deprecated. - this method is deprecated and kept for backwards compatibility as long as the OntologyOWLIM2 plugin is kept. Use the method Ontology.addAllValuesFromRestriction(ObjectProperty, OClass) instead. |
CardinalityRestriction |
Ontology.addCardinalityRestriction(RDFProperty onProperty,
String cardinalityValue)
Adds a new Cardinality Restriction to the ontology. |
HasValueRestriction |
Ontology.addHasValueRestriction(RDFProperty onProperty,
OResource hasValue)
Adds a new HasValue Restriction to the ontology. |
MaxCardinalityRestriction |
Ontology.addMaxCardinalityRestriction(RDFProperty onProperty,
String maxCardinalityValue)
Adds a new MaxCardinality Restriction to the ontology. |
MinCardinalityRestriction |
Ontology.addMinCardinalityRestriction(RDFProperty onProperty,
String minCardinalityValue)
Adds a new MinCardinality Restriction to the ontology. |
void |
OInstance.addRDFPropertyValue(RDFProperty aProperty,
OResource value)
Deprecated. this throws an exception in the new implementation |
SomeValuesFromRestriction |
Ontology.addSomeValuesFromRestriction(RDFProperty onProperty,
OResource hasValue)
Adds a new AllValuesFrom Restriction to the ontology. |
void |
RDFProperty.addSubProperty(RDFProperty property)
Add a SuperPropertyOf relation between the given property and this. |
void |
Ontology.fireResourcePropertyValueChanged(OResource resource,
RDFProperty property,
Object value,
int eventType)
A method to invoke when a resource's property value is changed |
List<OResource> |
Ontology.getOResourcesWith(RDFProperty aProperty,
Literal aValue)
This method given a property (either an annotation or datatype), retrieves a list of resources which have the provided literal set as a value. |
List<OResource> |
Ontology.getOResourcesWith(RDFProperty aProperty,
OResource aValue)
This method given a property (either object, transitive, symmetric or rdf), retrieves a list of resources which have the provided resource set as a value. |
List<OValue> |
OInstance.getRDFPropertyOValues(RDFProperty aProperty)
|
List<OResource> |
OInstance.getRDFPropertyValues(RDFProperty aProperty)
Deprecated. |
boolean |
OInstance.hasRDFPropertyWithValue(RDFProperty aProperty,
OResource aResource)
Deprecated. |
boolean |
RDFProperty.isEquivalentPropertyAs(RDFProperty theProperty)
Checks whether the property is Equivalent as the one provide. |
boolean |
RDFProperty.isSubPropertyOf(RDFProperty theProperty,
byte closure)
Deprecated. |
boolean |
RDFProperty.isSubPropertyOf(RDFProperty theProperty,
OConstants.Closure closure)
|
boolean |
RDFProperty.isSuperPropertyOf(RDFProperty theProperty,
byte closure)
Deprecated. |
boolean |
RDFProperty.isSuperPropertyOf(RDFProperty theProperty,
OConstants.Closure closure)
|
void |
Ontology.removeProperty(RDFProperty theProperty)
A method to remove the existing propertyDefinition (exclusive of Annotation Property). |
void |
OInstance.removeRDFPropertyValue(RDFProperty aProperty,
OResource value)
Deprecated. |
void |
OInstance.removeRDFPropertyValues(RDFProperty aProperty)
Deprecated. |
void |
RDFProperty.removeSubProperty(RDFProperty property)
Removes a SuperPropertyOf relation between the given property and this. |
void |
OntologyModificationListener.resourcePropertyValueChanged(Ontology ontology,
OResource resource,
RDFProperty property,
Object value,
int eventType)
This method should be invoked when a property value is added or removed (specified by the event type). |
void |
RDFProperty.setEquivalentPropertyAs(RDFProperty theProperty)
Add an equivalentPropertyAs relation between the two properties. |
void |
Restriction.setOnPropertyValue(RDFProperty property)
Sets the property on which the restriction is specified |
| Uses of RDFProperty in gate.gui.docview |
|---|
| Methods in gate.gui.docview with parameters of type RDFProperty | |
|---|---|
void |
OntologyClassView.resourcePropertyValueChanged(Ontology ontology,
OResource resource,
RDFProperty property,
Object value,
int eventType)
|
| Uses of RDFProperty in gate.gui.ontology |
|---|
| Fields in gate.gui.ontology declared as RDFProperty | |
|---|---|
protected RDFProperty[] |
SearchAction.propertiesArray
An array that contains a list of properties in which the search function searches in. |
protected RDFProperty |
PropertyValue.property
The instance of property for which the value is of type. |
| Methods in gate.gui.ontology that return RDFProperty | |
|---|---|
RDFProperty |
PropertyValue.getProperty()
Gets the associated property |
| Methods in gate.gui.ontology with parameters of type RDFProperty | |
|---|---|
protected void |
OntologyEditor.propertyIsAdded(RDFProperty p)
Update the property tree model. |
void |
OntologyEditor.resourcePropertyValueChanged(Ontology ontology,
OResource resource,
RDFProperty property,
Object value,
int eventType)
|
protected void |
OntologyEditor.subPropertyIsAdded(RDFProperty p)
Update the property tree model. |
protected void |
OntologyEditor.subPropertyIsDeleted(RDFProperty p)
Update the property tree model. |
| Method parameters in gate.gui.ontology with type arguments of type RDFProperty | |
|---|---|
protected void |
OntologyEditor.addPropertyChidrenRec(DefaultMutableTreeNode parent,
List<RDFProperty> children,
Comparator comparator)
Adds the children nodes to a node using values from a list of classes and instances. |
| Constructors in gate.gui.ontology with parameters of type RDFProperty | |
|---|---|
PropertyValue(RDFProperty property,
Object value)
Constructor |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||