Class BoundingBoxTypeBinding

  • All Implemented Interfaces:
    Binding, ComplexBinding, InstanceBinding
    Direct Known Subclasses:
    WGS84BoundingBoxTypeBinding

    public class BoundingBoxTypeBinding
    extends ComplexEMFBinding
    Binding object for the type http://www.opengis.net/ows:BoundingBoxType.

             
      <complexType name="BoundingBoxType">
          <annotation>
              <documentation>XML encoded minimum rectangular bounding box (or region) parameter, surrounding all the associated data. </documentation>
              <documentation>This type is adapted from the EnvelopeType of GML 3.1, with modified contents and documentation for encoding a MINIMUM size box SURROUNDING all associated data. </documentation>
          </annotation>
          <sequence>
              <element name="LowerCorner" type="ows:PositionType">
                  <annotation>
                      <documentation>Position of the bounding box corner at which the value of each coordinate normally is the algebraic minimum within this bounding box. In some cases, this position is normally displayed at the top, such as the top left for some image coordinates. For more information, see Subclauses 10.2.5 and C.13. </documentation>
                  </annotation>
              </element>
              <element name="UpperCorner" type="ows:PositionType">
                  <annotation>
                      <documentation>Position of the bounding box corner at which the value of each coordinate normally is the algebraic maximum within this bounding box. In some cases, this position is normally displayed at the bottom, such as the bottom right for some image coordinates. For more information, see Subclauses 10.2.5 and C.13. </documentation>
                  </annotation>
              </element>
          </sequence>
          <attribute name="crs" type="anyURI" use="optional">
              <annotation>
                  <documentation>Usually references the definition of a CRS, as specified in [OGC Topic 2]. Such a CRS definition can be XML encoded using the gml:CoordinateReferenceSystemType in [GML 3.1]. For well known references, it is not required that a CRS definition exist at the location the URI points to. If no anyURI value is included, the applicable CRS must be either:
      a)        Specified outside the bounding box, but inside a data structure that includes this bounding box, as specified for a specific OWS use of this bounding box type.
      b)        Fixed and specified in the Implementation Specification for a specific OWS use of the bounding box type. </documentation>
              </annotation>
          </attribute>
          <attribute name="dimensions" type="positiveInteger" use="optional">
              <annotation>
                  <documentation>The number of dimensions in this CRS (the length of a coordinate sequence in this use of the PositionType). This number is specified by the CRS definition, but can also be specified here. </documentation>
              </annotation>
          </attribute>
      </complexType>
    
              
             
    • Constructor Detail

      • BoundingBoxTypeBinding

        public BoundingBoxTypeBinding()
      • BoundingBoxTypeBinding

        public BoundingBoxTypeBinding​(EFactory owsFactory,
                                      QName target)
    • Method Detail

      • parse

        public Object parse​(ElementInstance instance,
                            Node node,
                            Object value)
                     throws Exception
        Specified by:
        parse in interface ComplexBinding
        Overrides:
        parse in class AbstractComplexEMFBinding
        Parameters:
        instance - The element being parsed.
        node - The node in the parse tree representing the element being parsed.
        value - The result of the parse from another strategy in the type hierarchy. Could be null if this is the first strategy being executed.
        Returns:
        The parsed object, or null if the component could not be parsed.
        Throws:
        Exception - Strategy objects should not attempt to handle any exceptions.
      • getProperty

        public Object getProperty​(Object object,
                                  QName name)
                           throws Exception
        Description copied from class: AbstractComplexEMFBinding
        Uses EMF reflection dynamically return the property with the specified name.

        In the case that the name of a child element or attributes does not match the name of a property on the object, subclasses may wish to extend this method and set the property explicitly.

        Specified by:
        getProperty in interface ComplexBinding
        Overrides:
        getProperty in class AbstractComplexEMFBinding
        Parameters:
        object - The object being encoded.
        name - The name of the property to obtain.
        Returns:
        The value of the property, or null.
        Throws:
        Exception
        See Also:
        ComplexBinding.getProperty(Object, QName)