ICommentAuthor
public interface ICommentAuthor
Represents an author of comments.
Methods
Method | Description |
---|---|
getName() | Returns or sets the author’s name. |
setName(String value) | Returns or sets the author’s name. |
getInitials() | Returns or sets the authors initials. |
setInitials(String value) | Returns or sets the authors initials. |
getComments() | Returns the collection of comments made by this author. |
remove() | Removes the author from the parent collection. |
getName()
public abstract String getName()
Returns or sets the author’s name. Read/write String.
Returns: java.lang.String
setName(String value)
public abstract void setName(String value)
Returns or sets the author’s name. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getInitials()
public abstract String getInitials()
Returns or sets the authors initials. Read/write String.
Returns: java.lang.String
setInitials(String value)
public abstract void setInitials(String value)
Returns or sets the authors initials. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getComments()
public abstract ICommentCollection getComments()
Returns the collection of comments made by this author. Read-only ICommentCollection.
Returns: ICommentCollection
remove()
public abstract void remove()
Removes the author from the parent collection.