org.xwiki.annotation.rest.model.jaxb
Class AnnotatedContent

java.lang.Object
  extended by 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
protected  List<AnnotationStub> annotations
           
protected  String content
           
 
Constructor Summary
AnnotatedContent()
           
 
Method Summary
 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(AnnotationStub... values)
           
 AnnotatedContent withAnnotations(Collection<AnnotationStub> values)
           
 AnnotatedContent withContent(String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

content

protected String content

annotations

protected List<AnnotationStub> annotations
Constructor Detail

AnnotatedContent

public AnnotatedContent()
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 is String

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)


Copyright © 2004-2012 XWiki. All Rights Reserved.