Interface ILcdXMLSimpleLink

All Known Subinterfaces:
ILcdGML3Association, ILcdGML3AssociationAttributeGroup, ILcdGML3CurveProperty, ILcdGML3FeatureProperty, ILcdGML3GeometricPrimitiveProperty, ILcdGML3GeometryProperty, ILcdGML3LocationProperty, ILcdGML3MetaDataProperty, ILcdGML3MultiCurveProperty, ILcdGML3MultiGeometryProperty, ILcdGML3MultiPointProperty, ILcdGML3MultiSurfaceProperty, ILcdGML3PointProperty, ILcdGML3Reference, ILcdGML3StringOrRef, ILcdGML3SurfaceProperty
All Known Implementing Classes:
TLcdOWSAdditionalParameters, TLcdOWSAdditionalParametersBase, TLcdOWSMetadata, TLcdOWSOnlineResource, TLcdOWSRequestMethod, TLcdSLDOnlineResource, TLcdWCSContentMetadata, TLcdWCSMetadataLink

public interface ILcdXMLSimpleLink
Interface for the simpleLink attribute group.

Represents a simple XLink object.

Since:
6.1
  • Method Details Link icon

    • getType Link icon

      String getType()
      Returns the type of this link, which is always "simple".
      Returns:
      "simple".
    • getHref Link icon

      String getHref()
      Returns the URI of this link.
      Returns:
      the URI of this link.
    • getRole Link icon

      String getRole()
      Returns the role of this link.
      Returns:
      the role of this link.
    • getArcrole Link icon

      String getArcrole()
      Returns the arcrole of this link.
      Returns:
      the arcrole of this link.
    • getTitle Link icon

      String getTitle()
      Returns the title of this link.
      Returns:
      the title of this link.
    • getShow Link icon

      String getShow()
      Returns the show mode of this link.

      The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; its value should be treated as follows:

      • new - load ending resource in a new window, frame, pane, or other presentation context
      • replace - load the resource in the same window, frame, pane, or other presentation context
      • embed - load ending resource in place of the presentation of the starting resource
      • other - behavior is unconstrained; examine other markup in the link for hints
      • none - behavior is unconstrained
      Returns:
      the show mode of this link.
    • getActuate Link icon

      String getActuate()
      Returns the actuate mode of this link.

      The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; its value should be treated as follows:

      • onLoad - traverse to the ending resource immediately on loading the starting resource
      • onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose
      • other - behavior is unconstrained; examine other markup in link for hints
      • none - behavior is unconstrained
      Returns:
      the actuate mode of this link.
    • setHref Link icon

      void setHref(String aHref)
      Sets the URI of this link.
      Parameters:
      aHref - the URI of this link.
    • setRole Link icon

      void setRole(String aRole)
      Sets the role of this link.
      Parameters:
      aRole - the role of this link.
    • setArcrole Link icon

      void setArcrole(String aArcrole)
      Sets the arcrole of this link.
      Parameters:
      aArcrole - the arcrole of this link.
    • setTitle Link icon

      void setTitle(String aTitle)
      Sets the title of this link.
      Parameters:
      aTitle - the title of this link.
    • setShow Link icon

      void setShow(String aShow)
      Sets the show mode of this link.
      Parameters:
      aShow - the show mode of this link.
    • setActuate Link icon

      void setActuate(String aActuate)
      Sets the actuate mode of this link.
      Parameters:
      aActuate - the actuate mdoe of this link.