Class AnnotatedContent
- java.lang.Object
-
- org.xwiki.annotation.rest.model.jaxb.AnnotatedContent
-
public class AnnotatedContent extends Object
Stores the rendered annotated content along with a list of annotation stubs allowing to display an annotated document and the annotation markers on it.Java class for AnnotatedContent complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AnnotatedContent"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="content" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="annotations" type="{http://www.xwiki.org}AnnotationStub" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<AnnotationStub>
annotations
protected String
content
-
Constructor Summary
Constructors Constructor Description AnnotatedContent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AnnotationStub>
getAnnotations()
Gets the value of the annotations property.String
getContent()
Gets the value of the content property.void
setContent(String value)
Sets the value of the content property.AnnotatedContent
withAnnotations(Collection<AnnotationStub> values)
AnnotatedContent
withAnnotations(AnnotationStub... values)
AnnotatedContent
withContent(String value)
-
-
-
Field Detail
-
content
protected String content
-
annotations
protected List<AnnotationStub> annotations
-
-
Method Detail
-
getContent
public String getContent()
Gets the value of the content property.- Returns:
- possible object is
String
-
setContent
public void setContent(String value)
Sets the value of the content property.- Parameters:
value
- allowed object isString
-
getAnnotations
public List<AnnotationStub> getAnnotations()
Gets the value of the annotations 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 annotations property.For example, to add a new item, do as follows:
getAnnotations().add(newItem);
Objects of the following type(s) are allowed in the list
AnnotationStub
-
withContent
public AnnotatedContent withContent(String value)
-
withAnnotations
public AnnotatedContent withAnnotations(AnnotationStub... values)
-
withAnnotations
public AnnotatedContent withAnnotations(Collection<AnnotationStub> values)
-
-