Package org.apache.poi.hslf.usermodel
Class HSLFComment
- java.lang.Object
-
- org.apache.poi.hslf.usermodel.HSLFComment
-
-
Constructor Summary
Constructors Constructor Description HSLFComment(Comment2000 comment2000)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAuthor()
Get the Author of this commentjava.lang.String
getAuthorInitials()
Get the Author's Initials of this commentjava.util.Date
getDate()
Gets the date the comment was made.java.awt.geom.Point2D
getOffset()
Gets the offset of the comment on the page.java.lang.String
getText()
Get the text of this commentvoid
setAuthor(java.lang.String author)
Set the Author of this commentvoid
setAuthorInitials(java.lang.String initials)
Set the Author's Initials of this commentvoid
setDate(java.util.Date date)
Sets the date the comment was made.void
setOffset(java.awt.geom.Point2D offset)
Sets the offset of the comment on the page.void
setText(java.lang.String text)
Set the text of this comment
-
-
-
Constructor Detail
-
HSLFComment
public HSLFComment(Comment2000 comment2000)
-
-
Method Detail
-
getAuthor
public java.lang.String getAuthor()
Get the Author of this comment
-
setAuthor
public void setAuthor(java.lang.String author)
Set the Author of this comment
-
getAuthorInitials
public java.lang.String getAuthorInitials()
Get the Author's Initials of this comment- Specified by:
getAuthorInitials
in interfaceComment
-
setAuthorInitials
public void setAuthorInitials(java.lang.String initials)
Set the Author's Initials of this comment- Specified by:
setAuthorInitials
in interfaceComment
-
getText
public java.lang.String getText()
Get the text of this comment
-
setText
public void setText(java.lang.String text)
Set the text of this comment
-
getDate
public java.util.Date getDate()
Description copied from interface:Comment
Gets the date the comment was made.
-
setDate
public void setDate(java.util.Date date)
Description copied from interface:Comment
Sets the date the comment was made.
-
getOffset
public java.awt.geom.Point2D getOffset()
Description copied from interface:Comment
Gets the offset of the comment on the page.
-
-