Package com.lowagie.text.rtf.text
Class RtfAnnotation
- java.lang.Object
-
- com.lowagie.text.rtf.RtfElement
-
- com.lowagie.text.rtf.text.RtfAnnotation
-
- All Implemented Interfaces:
RtfBasicElement
,com.lowagie.text.RtfElementInterface
public class RtfAnnotation extends RtfElement
The RtfAnnotation provides support for adding Annotations to the rtf document. Only simple Annotations with Title / Content are supported.- Version:
- $Id: RtfAnnotation.java 3580 2008-08-06 15:52:00Z howard_s $
-
-
Field Summary
Fields Modifier and Type Field Description private static byte[]
ANNOTATION
Constant for the actual annotationprivate static byte[]
ANNOTATION_AUTHOR
Constant for the author of the annotationprivate static byte[]
ANNOTATION_ID
Constant for the id of the annotationprivate java.lang.String
content
The content of this RtfAnnotationprivate java.lang.String
title
The title of this RtfAnnotation-
Fields inherited from class com.lowagie.text.rtf.RtfElement
document, inHeader, inTable
-
Fields inherited from interface com.lowagie.text.rtf.RtfBasicElement
CLOSE_GROUP, COMMA_DELIMITER, DELIMITER, OPEN_GROUP, TWIPS_FACTOR
-
-
Constructor Summary
Constructors Constructor Description RtfAnnotation(RtfDocument doc, com.lowagie.text.Annotation annotation)
Constructs a RtfAnnotation based on an Annotation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writeContent(java.io.OutputStream result)
Writes the content of the RtfAnnotation-
Methods inherited from class com.lowagie.text.rtf.RtfElement
intToByteArray, isInTable, setInHeader, setInTable, setRtfDocument
-
-
-
-
Field Detail
-
ANNOTATION_ID
private static final byte[] ANNOTATION_ID
Constant for the id of the annotation
-
ANNOTATION_AUTHOR
private static final byte[] ANNOTATION_AUTHOR
Constant for the author of the annotation
-
ANNOTATION
private static final byte[] ANNOTATION
Constant for the actual annotation
-
title
private final java.lang.String title
The title of this RtfAnnotation
-
content
private final java.lang.String content
The content of this RtfAnnotation
-
-
Constructor Detail
-
RtfAnnotation
public RtfAnnotation(RtfDocument doc, com.lowagie.text.Annotation annotation)
Constructs a RtfAnnotation based on an Annotation.- Parameters:
doc
- The RtfDocument this RtfAnnotation belongs toannotation
- The Annotation this RtfAnnotation is based off
-
-
Method Detail
-
writeContent
public void writeContent(java.io.OutputStream result) throws java.io.IOException
Writes the content of the RtfAnnotation- Specified by:
writeContent
in interfaceRtfBasicElement
- Specified by:
writeContent
in classRtfElement
- Parameters:
result
- TheOutputStream
to write the content to- Throws:
java.io.IOException
-
-