Class AnnotationType.Comment.Add
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.AnnotationType.Comment.Add
-
- Enclosing class:
- AnnotationType.Comment
public static class AnnotationType.Comment.Add extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="replyTo" type="{http://schema.webpdf.de/1.0/operation}ReplyToAnnotationType"/> <element name="changeAnnotationState" type="{http://schema.webpdf.de/1.0/operation}ReplyStateAnnotationType"/> <element name="markAnnotation" type="{http://schema.webpdf.de/1.0/operation}MarkedStateAnnotationType"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ReplyStateAnnotationType>changeAnnotationStateprotected List<MarkedStateAnnotationType>markAnnotationprotected List<ReplyToAnnotationType>replyTo
-
Constructor Summary
Constructors Constructor Description Add()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ReplyStateAnnotationType>getChangeAnnotationState()Gets the value of the changeAnnotationState property.List<MarkedStateAnnotationType>getMarkAnnotation()Gets the value of the markAnnotation property.List<ReplyToAnnotationType>getReplyTo()Gets the value of the replyTo property.
-
-
-
Field Detail
-
replyTo
protected List<ReplyToAnnotationType> replyTo
-
changeAnnotationState
protected List<ReplyStateAnnotationType> changeAnnotationState
-
markAnnotation
protected List<MarkedStateAnnotationType> markAnnotation
-
-
Method Detail
-
getReplyTo
public List<ReplyToAnnotationType> getReplyTo()
Gets the value of the replyTo 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 Jakarta XML Binding object. This is why there is not a
setmethod for the replyTo property.For example, to add a new item, do as follows:
getReplyTo().add(newItem);Objects of the following type(s) are allowed in the list
ReplyToAnnotationType- Returns:
- The value of the replyTo property.
-
getChangeAnnotationState
public List<ReplyStateAnnotationType> getChangeAnnotationState()
Gets the value of the changeAnnotationState 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 Jakarta XML Binding object. This is why there is not a
setmethod for the changeAnnotationState property.For example, to add a new item, do as follows:
getChangeAnnotationState().add(newItem);Objects of the following type(s) are allowed in the list
ReplyStateAnnotationType- Returns:
- The value of the changeAnnotationState property.
-
getMarkAnnotation
public List<MarkedStateAnnotationType> getMarkAnnotation()
Gets the value of the markAnnotation 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 Jakarta XML Binding object. This is why there is not a
setmethod for the markAnnotation property.For example, to add a new item, do as follows:
getMarkAnnotation().add(newItem);Objects of the following type(s) are allowed in the list
MarkedStateAnnotationType- Returns:
- The value of the markAnnotation property.
-
-