com.aspose.slides
Class Comment

java.lang.Object
  extended by com.aspose.slides.Comment

public class Comment
extends java.lang.Object

Represents a user comment created on a slide.


Method Summary
 CommentAuthor getAuthor()
          Returns the author who created the slide comment.
 java.util.Date getCreatedTime()
          Returns the time of a comment creation.
 java.lang.String getInitials()
          Returns the initials of an author who created the slide comment.
 java.awt.Point getPosition()
          Returns the point on a slide where comment should be placed.
 java.lang.String getText()
          Returns the text of a slide comment.
 void setAuthor(CommentAuthor value)
          Sets the author who created the slide comment.
 void setCreatedTime(java.util.Date value)
          Sets the time of a comment creation.
 void setInitials(java.lang.String value)
          Sets the initials of an author who created the slide comment.
 void setPosition(java.awt.Point value)
          Sets the point on a slide where comment should be placed.
 void setText(java.lang.String value)
          Sets the text of a slide comment.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getAuthor

public CommentAuthor getAuthor()
Returns the author who created the slide comment.


setAuthor

public void setAuthor(CommentAuthor value)
Sets the author who created the slide comment.


getInitials

public java.lang.String getInitials()
Returns the initials of an author who created the slide comment.


setInitials

public void setInitials(java.lang.String value)
Sets the initials of an author who created the slide comment.


getText

public java.lang.String getText()
Returns the text of a slide comment.


setText

public void setText(java.lang.String value)
Sets the text of a slide comment.


getCreatedTime

public java.util.Date getCreatedTime()
Returns the time of a comment creation.


setCreatedTime

public void setCreatedTime(java.util.Date value)
Sets the time of a comment creation.


getPosition

public java.awt.Point getPosition()
Returns the point on a slide where comment should be placed.


setPosition

public void setPosition(java.awt.Point value)
Sets the point on a slide where comment should be placed.