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

java.lang.Object
  extended by org.xwiki.annotation.rest.model.jaxb.AnnotatedContent

public class AnnotatedContent
extends java.lang.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="annotation" type="{http://www.xwiki.org}AnnotationStub" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<AnnotationStub> annotations
           
protected  java.lang.String content
           
 
Constructor Summary
AnnotatedContent()
           
 
Method Summary
 java.util.List<AnnotationStub> getAnnotations()
          Gets the value of the annotations property.
 java.lang.String getContent()
          Gets the value of the content property.
 void setContent(java.lang.String value)
          Sets the value of the content property.
 AnnotatedContent withAnnotations(AnnotationStub... values)
           
 AnnotatedContent withAnnotations(java.util.Collection<AnnotationStub> values)
           
 AnnotatedContent withContent(java.lang.String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

content

protected java.lang.String content

annotations

protected java.util.List<AnnotationStub> annotations
Constructor Detail

AnnotatedContent

public AnnotatedContent()
Method Detail

getContent

public java.lang.String getContent()
Gets the value of the content property.

Returns:
possible object is String

setContent

public void setContent(java.lang.String value)
Sets the value of the content property.

Parameters:
value - allowed object is String

getAnnotations

public java.util.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(java.lang.String value)

withAnnotations

public AnnotatedContent withAnnotations(AnnotationStub... values)

withAnnotations

public AnnotatedContent withAnnotations(java.util.Collection<AnnotationStub> values)


Copyright © 2004-2011 XWiki. All Rights Reserved.