Class ContentImpl
- java.lang.Object
-
- com.priint.pubserver.metadata.xml.element.ContentImpl
-
- All Implemented Interfaces:
Content,java.io.Serializable
public class ContentImpl extends java.lang.Object implements java.io.Serializable, Content
Java class for content complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="content"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> </choice> <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="placeholder" type="{}placeholder" maxOccurs="unbounded" minOccurs="0"/> <element name="table" type="{}table" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="format" type="{}format" /> <attribute name="parastyle" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="charstyle" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContentImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCharstyle()Gets the value of the charstyle property.java.util.List<java.io.Serializable>getContent()Gets the value of the content property.FormatgetFormat()Gets the value of the format property.java.lang.StringgetParastyle()Gets the value of the parastyle property.voidsetCharstyle(java.lang.String value)Sets the value of the charstyle property.voidsetFormat(Format value)Sets the value of the format property.voidsetParastyle(java.lang.String value)Sets the value of the parastyle property.
-
-
-
Field Detail
-
content
protected java.util.ArrayList<java.io.Serializable> content
-
format
protected Format format
-
parastyle
protected java.lang.String parastyle
-
charstyle
protected java.lang.String charstyle
-
-
Method Detail
-
getContent
public java.util.List<java.io.Serializable> getContent()
Description copied from interface:ContentGets 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
setmethod 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
JAXBElement<TableImpl>JAXBElement<String>StringJAXBElement<PlaceholderImpl>- Specified by:
getContentin interfaceContent- Returns:
- the content
-
getFormat
public Format getFormat()
Description copied from interface:ContentGets the value of the format property.
-
setFormat
public void setFormat(Format value)
Description copied from interface:ContentSets the value of the format property.
-
getParastyle
public java.lang.String getParastyle()
Description copied from interface:ContentGets the value of the parastyle property.- Specified by:
getParastylein interfaceContent- Returns:
- possible object is
String
-
setParastyle
public void setParastyle(java.lang.String value)
Description copied from interface:ContentSets the value of the parastyle property.- Specified by:
setParastylein interfaceContent- Parameters:
value- allowed object isString
-
getCharstyle
public java.lang.String getCharstyle()
Description copied from interface:ContentGets the value of the charstyle property.- Specified by:
getCharstylein interfaceContent- Returns:
- possible object is
String
-
setCharstyle
public void setCharstyle(java.lang.String value)
Description copied from interface:ContentSets the value of the charstyle property.- Specified by:
setCharstylein interfaceContent- Parameters:
value- allowed object isString
-
-