Package com.luciad.format.xml.xlink
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 Summary
Modifier and TypeMethodDescriptionReturns the actuate mode of this link.Returns the arcrole of this link.getHref()
Returns the URI of this link.getRole()
Returns the role of this link.getShow()
Returns the show mode of this link.getTitle()
Returns the title of this link.getType()
Returns the type of this link, which is always "simple
".void
setActuate
(String aActuate) Sets the actuate mode of this link.void
setArcrole
(String aArcrole) Sets the arcrole of this link.void
Sets the URI of this link.void
Sets the role of this link.void
Sets the show mode of this link.void
Sets the title of this link.
-
Method Details
-
getType
String getType()Returns the type of this link, which is always "simple
".- Returns:
- "
simple
".
-
getHref
String getHref()Returns the URI of this link.- Returns:
- the URI of this link.
-
getRole
String getRole()Returns the role of this link.- Returns:
- the role of this link.
-
getArcrole
String getArcrole()Returns the arcrole of this link.- Returns:
- the arcrole of this link.
-
getTitle
String getTitle()Returns the title of this link.- Returns:
- the title of this link.
-
getShow
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
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
Sets the URI of this link.- Parameters:
aHref
- the URI of this link.
-
setRole
Sets the role of this link.- Parameters:
aRole
- the role of this link.
-
setArcrole
Sets the arcrole of this link.- Parameters:
aArcrole
- the arcrole of this link.
-
setTitle
Sets the title of this link.- Parameters:
aTitle
- the title of this link.
-
setShow
Sets the show mode of this link.- Parameters:
aShow
- the show mode of this link.
-
setActuate
Sets the actuate mode of this link.- Parameters:
aActuate
- the actuate mdoe of this link.
-