Interface Content
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ContentImpl
public interface Content extends java.io.SerializableInterface for the content xml type.
Interface for the content xml type referred in the paragraph element in element documents. content describes the text or graphic content of a frame or paragraph.
Implemented inElementImpl.
-
-
Method Summary
All Methods Instance Methods Abstract 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.
-
-
-
Method Detail
-
getContent
java.util.List<java.io.Serializable> getContent()
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
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>- Returns:
- the content
-
getFormat
Format getFormat()
Gets the value of the format property.- Returns:
- possible object is
Format
-
setFormat
void setFormat(Format value)
Sets the value of the format property.- Parameters:
value- allowed object isFormat
-
getParastyle
java.lang.String getParastyle()
Gets the value of the parastyle property.- Returns:
- possible object is
String
-
setParastyle
void setParastyle(java.lang.String value)
Sets the value of the parastyle property.- Parameters:
value- allowed object isString
-
getCharstyle
java.lang.String getCharstyle()
Gets the value of the charstyle property.- Returns:
- possible object is
String
-
setCharstyle
void setCharstyle(java.lang.String value)
Sets the value of the charstyle property.- Parameters:
value- allowed object isString
-
-