Package nl.b3p.csw.jaxb.gml
Class DefinitionType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.AbstractGMLType
-
- nl.b3p.csw.jaxb.gml.DefinitionType
-
- Direct Known Subclasses:
DefinitionProxyType,DictionaryType,UnitDefinitionType
public class DefinitionType extends AbstractGMLType
A definition, which can be included in or referenced by a dictionary. In this extended type, the inherited "description" optional element can hold the definition whenever only text is needed. The inherited "name" elements can provide one or more brief terms for which this is the definition. The inherited "metaDataProperty" elements can be used to reference or include more information about this definition. The gml:id attribute is required - it must be possible to reference this definition using this handle.Java class for DefinitionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DefinitionType"> <complexContent> <restriction base="{http://www.opengis.net/gml}AbstractGMLType"> <sequence> <element ref="{http://www.opengis.net/gml}metaDataProperty" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.opengis.net/gml}description" minOccurs="0"/> <element ref="{http://www.opengis.net/gml}name" maxOccurs="unbounded"/> </sequence> <attribute ref="{http://www.opengis.net/gml}id use="required""/> </restriction> </complexContent> </complexType>
-
-
Field Summary
-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
description, id, metaDataProperty, name
-
-
Constructor Summary
Constructors Constructor Description DefinitionType()Default no-arg constructorDefinitionType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id)Fully-initialising value constructor
-
Method Summary
-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, setDescription, setId
-
-
-
-
Constructor Detail
-
DefinitionType
public DefinitionType()
Default no-arg constructor
-
DefinitionType
public DefinitionType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id)
Fully-initialising value constructor
-
-