Package net.opengis.gml311
Interface BagType
-
- All Superinterfaces:
AbstractGMLType
,EObject
,Notifier
- All Known Implementing Classes:
BagTypeImpl
public interface BagType extends AbstractGMLType
A representation of the model object 'Bag Type'. A non-abstract generic collection type that can be used as a document element for a collection of any GML types - Geometries, Topologies, Features ... FeatureCollections may only contain Features. GeometryCollections may only contain Geometrys. Bags are less constrained they must contain objects that are substitutable for gml:_Object. This may mix several levels, including Features, Definitions, Dictionaries, Geometries etc. The content model would ideally be member 0..* members 0..1 member 0..* for maximum flexibility in building a collection from both homogeneous and distinct components: included "member" elements each contain a single Object an included "members" element contains a set of Objects However, this is non-deterministic, thus prohibited by XSD.The following features are supported:
- See Also:
Gml311Package.getBagType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EList<AssociationType>
getMember()
Returns the value of the 'Member' containment reference list.ArrayAssociationType
getMembers()
Returns the value of the 'Members' containment reference.void
setMembers(ArrayAssociationType value)
Sets the value of the 'Members
' containment reference.-
Methods inherited from interface AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, getNameGroup, setDescription, setId
-
-
-
-
Method Detail
-
getMember
EList<AssociationType> getMember()
Returns the value of the 'Member' containment reference list. The list contents are of typeAssociationType
.If the meaning of the 'Member' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Member' containment reference list.
- See Also:
Gml311Package.getBagType_Member()
-
getMembers
ArrayAssociationType getMembers()
Returns the value of the 'Members' containment reference.If the meaning of the 'Members' containment reference isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Members' containment reference.
- See Also:
setMembers(ArrayAssociationType)
,Gml311Package.getBagType_Members()
-
setMembers
void setMembers(ArrayAssociationType value)
Sets the value of the 'Members
' containment reference.- Parameters:
value
- the new value of the 'Members' containment reference.- See Also:
getMembers()
-
-