Package net.opengis.gml311
Interface NodeType
-
- All Superinterfaces:
AbstractGMLType
,AbstractTopologyType
,AbstractTopoPrimitiveType
,EObject
,Notifier
- All Known Implementing Classes:
NodeTypeImpl
public interface NodeType extends AbstractTopoPrimitiveType
A representation of the model object 'Node Type'. Its optional co-boundary is a set of connected directedEdges. The orientation of one of these dirEdges is "+" if the Node is the "to" node of the Edge, and "-" if it is the "from" node.The following features are supported:
- See Also:
Gml311Package.getNodeType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EList<DirectedEdgePropertyType>
getDirectedEdge()
Returns the value of the 'Directed Edge' containment reference list.PointPropertyType
getPointProperty()
Returns the value of the 'Point Property' containment reference.void
setPointProperty(PointPropertyType value)
Sets the value of the 'Point Property
' containment reference.-
Methods inherited from interface AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, getNameGroup, setDescription, setId
-
Methods inherited from interface AbstractTopoPrimitiveType
getContainer, getIsolated, setContainer
-
-
-
-
Method Detail
-
getDirectedEdge
EList<DirectedEdgePropertyType> getDirectedEdge()
Returns the value of the 'Directed Edge' containment reference list. The list contents are of typeDirectedEdgePropertyType
.If the meaning of the 'Directed Edge' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Directed Edge' containment reference list.
- See Also:
Gml311Package.getNodeType_DirectedEdge()
-
getPointProperty
PointPropertyType getPointProperty()
Returns the value of the 'Point Property' containment reference. This property element either references a point via the XLink-attributes or contains the point element. pointProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for Point.- Returns:
- the value of the 'Point Property' containment reference.
- See Also:
setPointProperty(PointPropertyType)
,Gml311Package.getNodeType_PointProperty()
-
setPointProperty
void setPointProperty(PointPropertyType value)
Sets the value of the 'Point Property
' containment reference.- Parameters:
value
- the new value of the 'Point Property' containment reference.- See Also:
getPointProperty()
-
-