This class represents a comment on a slide, in the format used by
PPT 2000/XP/etc. (PPT 97 uses plain Escher Text Boxes for comments)
| Method from org.apache.poi.hslf.record.Comment2000 Detail: |
public String getAuthor() {
return authorRecord.getText();
}
Get the Author of this comment |
public String getAuthorInitials() {
return authorInitialsRecord.getText();
}
Get the Author's Initials of this comment |
public Comment2000Atom getComment2000Atom() {
return commentAtom;
}
Returns the Comment2000Atom of this Comment |
public long getRecordType() {
return _type;
}
|
public String getText() {
return commentRecord.getText();
}
Get the text of this comment |
public void setAuthor(String author) {
authorRecord.setText(author);
}
Set the Author of this comment |
public void setAuthorInitials(String initials) {
authorInitialsRecord.setText(initials);
}
Set the Author's Initials of this comment |
public void setText(String text) {
commentRecord.setText(text);
}
Set the text of this comment |
public void writeOut(OutputStream out) throws IOException {
writeOut(_header[0],_header[1],_type,_children,out);
}
Write the contents of the record back, so it can be written
to disk |