Package uk.org.siri.siri14
Class InfoLinkStructure
- java.lang.Object
-
- uk.org.siri.siri14.InfoLinkStructure
-
- All Implemented Interfaces:
Serializable
public class InfoLinkStructure extends Object implements Serializable
Type for a general hyperlink.Java class for InfoLinkStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InfoLinkStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Uri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> <element name="Label" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" minOccurs="0"/> <element name="Image" type="{http://www.siri.org.uk/siri}ImageStructure" minOccurs="0"/> <element name="LinkContent" type="{http://www.siri.org.uk/siri}LinkContentEnumeration" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ImageStructureimageprotected NaturalLanguageStringStructurelabelprotected LinkContentEnumerationlinkContentprotected Stringuri
-
Constructor Summary
Constructors Constructor Description InfoLinkStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageStructuregetImage()Gets the value of the image property.NaturalLanguageStringStructuregetLabel()Gets the value of the label property.LinkContentEnumerationgetLinkContent()Gets the value of the linkContent property.StringgetUri()Gets the value of the uri property.voidsetImage(ImageStructure value)Sets the value of the image property.voidsetLabel(NaturalLanguageStringStructure value)Sets the value of the label property.voidsetLinkContent(LinkContentEnumeration value)Sets the value of the linkContent property.voidsetUri(String value)Sets the value of the uri property.
-
-
-
Field Detail
-
uri
protected String uri
-
label
protected NaturalLanguageStringStructure label
-
image
protected ImageStructure image
-
linkContent
protected LinkContentEnumeration linkContent
-
-
Method Detail
-
getUri
public String getUri()
Gets the value of the uri property.- Returns:
- possible object is
String
-
setUri
public void setUri(String value)
Sets the value of the uri property.- Parameters:
value- allowed object isString
-
getLabel
public NaturalLanguageStringStructure getLabel()
Gets the value of the label property.- Returns:
- possible object is
NaturalLanguageStringStructure
-
setLabel
public void setLabel(NaturalLanguageStringStructure value)
Sets the value of the label property.- Parameters:
value- allowed object isNaturalLanguageStringStructure
-
getImage
public ImageStructure getImage()
Gets the value of the image property.- Returns:
- possible object is
ImageStructure
-
setImage
public void setImage(ImageStructure value)
Sets the value of the image property.- Parameters:
value- allowed object isImageStructure
-
getLinkContent
public LinkContentEnumeration getLinkContent()
Gets the value of the linkContent property.- Returns:
- possible object is
LinkContentEnumeration
-
setLinkContent
public void setLinkContent(LinkContentEnumeration value)
Sets the value of the linkContent property.- Parameters:
value- allowed object isLinkContentEnumeration
-
-