Package net.opengis.gml311
Interface OrientableSurfaceType
-
- All Superinterfaces:
AbstractGeometricPrimitiveType
,AbstractGeometryType
,AbstractGMLType
,AbstractSurfaceType
,EObject
,Notifier
- All Known Implementing Classes:
OrientableSurfaceTypeImpl
public interface OrientableSurfaceType extends AbstractSurfaceType
A representation of the model object 'Orientable Surface Type'. OrientableSurface consists of a surface and an orientation. If the orientation is "+", then the OrientableSurface is identical to the baseSurface. If the orientation is "-", then the OrientableSurface is a reference to a Surface with an up-normal that reverses the direction for this OrientableSurface, the sense of "the top of the surface".The following features are supported:
- See Also:
Gml311Package.getOrientableSurfaceType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SurfacePropertyType
getBaseSurface()
Returns the value of the 'Base Surface' containment reference.SignType
getOrientation()
Returns the value of the 'Orientation' attribute.boolean
isSetOrientation()
Returns whether the value of the 'Orientation
' attribute is set.void
setBaseSurface(SurfacePropertyType value)
Sets the value of the 'Base Surface
' containment reference.void
setOrientation(SignType value)
Sets the value of the 'Orientation
' attribute.void
unsetOrientation()
Unsets the value of the 'Orientation
' attribute.-
Methods inherited from interface AbstractGeometryType
getAxisLabels, getGid, getSrsDimension, getSrsName, getUomLabels, setAxisLabels, setGid, setSrsDimension, setSrsName, setUomLabels
-
Methods inherited from interface AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, getNameGroup, setDescription, setId
-
-
-
-
Method Detail
-
getBaseSurface
SurfacePropertyType getBaseSurface()
Returns the value of the 'Base Surface' containment reference. References or contains the base surface (positive orientation).- Returns:
- the value of the 'Base Surface' containment reference.
- See Also:
setBaseSurface(SurfacePropertyType)
,Gml311Package.getOrientableSurfaceType_BaseSurface()
-
setBaseSurface
void setBaseSurface(SurfacePropertyType value)
Sets the value of the 'Base Surface
' containment reference.- Parameters:
value
- the new value of the 'Base Surface' containment reference.- See Also:
getBaseSurface()
-
getOrientation
SignType getOrientation()
Returns the value of the 'Orientation' attribute. The default value is"+"
. The literals are from the enumerationSignType
. If the orientation is "+", then the OrientableSurface is identical to the baseSurface. If the orientation is "-", then the OrientableSurface is a reference to a Surface with an up-normal that reverses the direction for this OrientableSurface, the sense of "the top of the surface". "+" is the default value.- Returns:
- the value of the 'Orientation' attribute.
- See Also:
SignType
,isSetOrientation()
,unsetOrientation()
,setOrientation(SignType)
,Gml311Package.getOrientableSurfaceType_Orientation()
-
setOrientation
void setOrientation(SignType value)
Sets the value of the 'Orientation
' attribute.- Parameters:
value
- the new value of the 'Orientation' attribute.- See Also:
SignType
,isSetOrientation()
,unsetOrientation()
,getOrientation()
-
unsetOrientation
void unsetOrientation()
Unsets the value of the 'Orientation
' attribute.
-
isSetOrientation
boolean isSetOrientation()
Returns whether the value of the 'Orientation
' attribute is set.- Returns:
- whether the value of the 'Orientation' attribute is set.
- See Also:
unsetOrientation()
,getOrientation()
,setOrientation(SignType)
-
-