Package org.apache.poi.hslf.record
Class TextCharsAtom
- java.lang.Object
-
- org.apache.poi.hslf.record.Record
-
- org.apache.poi.hslf.record.RecordAtom
-
- org.apache.poi.hslf.record.TextCharsAtom
-
public final class TextCharsAtom extends RecordAtom
A TextCharsAtom (type 4000). Holds text in byte swapped unicode form. The trailing return character is always stripped from this
-
-
Field Summary
Fields Modifier and Type Field Description static long
_type
-
Constructor Summary
Constructors Constructor Description TextCharsAtom()
Create an empty TextCharsAtom
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getRecordType()
We are of type 4000java.lang.String
getText()
Grabs the text.void
setText(java.lang.String text)
Updates the text in the Atom.java.lang.String
toString()
dump debug info; use getText() to return a string representation of the atomvoid
writeOut(java.io.OutputStream out)
Write the contents of the record back, so it can be written to disk-
Methods inherited from class org.apache.poi.hslf.record.RecordAtom
getChildRecords, isAnAtom
-
Methods inherited from class org.apache.poi.hslf.record.Record
buildRecordAtOffset, createRecordForType, findChildRecords, writeLittleEndian, writeLittleEndian
-
-
-
-
Method Detail
-
getText
public java.lang.String getText()
Grabs the text.
-
setText
public void setText(java.lang.String text)
Updates the text in the Atom.
-
getRecordType
public long getRecordType()
We are of type 4000- Specified by:
getRecordType
in classRecord
-
writeOut
public void writeOut(java.io.OutputStream out) throws java.io.IOException
Write the contents of the record back, so it can be written to disk
-
toString
public java.lang.String toString()
dump debug info; use getText() to return a string representation of the atom- Overrides:
toString
in classjava.lang.Object
-
-