Class XHTMLDocCT
- java.lang.Object
-
- fi.tut.mei.matchmaking.model.xml.msg.XHTMLDocCT
-
public class XHTMLDocCT extends Object
Element for XHTML documentation fragment.Java class for XHTML_Doc_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="XHTML_Doc_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence minOccurs="0"> <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="URL" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="lang" type="{http://www.w3.org/2001/XMLSchema}language" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description XHTMLDocCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>
getContent()
Element for XHTML documentation fragment.Gets the value of the content property.String
getLang()
Gets the value of the lang property.String
getURL()
Gets the value of the url property.void
setLang(String value)
Sets the value of the lang property.void
setURL(String value)
Sets the value of the url property.
-
-
-
Method Detail
-
getContent
public List<Object> getContent()
Element for XHTML documentation fragment.Gets the value of the content property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the content property.For example, to add a new item, do as follows:
getContent().add(newItem);
Objects of the following type(s) are allowed in the list
Element
Object
String
-
getURL
public String getURL()
Gets the value of the url property.- Returns:
- possible object is
String
-
setURL
public void setURL(String value)
Sets the value of the url property.- Parameters:
value
- allowed object isString
-
getLang
public String getLang()
Gets the value of the lang property.- Returns:
- possible object is
String
-
-