Package org.apache.poi.xslf.usermodel
Class XSLFComment
- java.lang.Object
 - 
- org.apache.poi.xslf.usermodel.XSLFComment
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAuthor()Get the Author of this commentjava.lang.StringgetAuthorInitials()Get the Author's Initials of this commentjava.util.DategetDate()Gets the date the comment was made.java.awt.geom.Point2DgetOffset()Gets the offset of the comment on the page.java.lang.StringgetText()Get the text of this commentvoidsetAuthor(java.lang.String author)Set the Author of this comment.voidsetAuthorInitials(java.lang.String initials)Set the Author's Initials of this comment.voidsetDate(java.util.Date date)Sets the date the comment was made.voidsetOffset(java.awt.geom.Point2D offset)Sets the offset of the comment on the page.voidsetText(java.lang.String text)Set the text of this comment 
 - 
 
- 
- 
Method Detail
- 
getAuthor
public java.lang.String getAuthor()
Description copied from interface:CommentGet the Author of this comment 
- 
setAuthor
public void setAuthor(java.lang.String author)
Description copied from interface:CommentSet the Author of this comment. if the author wasn't registered before, create a new entry 
- 
getAuthorInitials
public java.lang.String getAuthorInitials()
Description copied from interface:CommentGet the Author's Initials of this comment- Specified by:
 getAuthorInitialsin interfaceComment
 
- 
setAuthorInitials
public void setAuthorInitials(java.lang.String initials)
Description copied from interface:CommentSet the Author's Initials of this comment. if the author wasn't registered before viaComment.setAuthor(String)this has no effect- Specified by:
 setAuthorInitialsin interfaceComment
 
- 
getText
public java.lang.String getText()
Description copied from interface:CommentGet the text of this comment 
- 
setText
public void setText(java.lang.String text)
Description copied from interface:CommentSet the text of this comment 
- 
getDate
public java.util.Date getDate()
Description copied from interface:CommentGets the date the comment was made. 
- 
setDate
public void setDate(java.util.Date date)
Description copied from interface:CommentSets the date the comment was made. 
- 
getOffset
public java.awt.geom.Point2D getOffset()
Description copied from interface:CommentGets the offset of the comment on the page. 
 - 
 
 -