Package io.keikai.model.impl
Class CommentImpl
- java.lang.Object
-
- io.keikai.model.impl.AbstractCommentAdv
-
- io.keikai.model.impl.CommentImpl
-
- All Implemented Interfaces:
SComment
,Serializable
public class CommentImpl extends AbstractCommentAdv
- Since:
- 3.5.0
- Author:
- dennis
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommentImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractCommentAdv
clone()
String
getAuthor()
SRichText
getRichText()
String
getText()
boolean
isRichText()
boolean
isVisible()
void
setAuthor(String author)
void
setRichText(SRichText text)
void
setText(String text)
SRichText
setupRichText()
Set a empty rich text value and return the instance which to be editedvoid
setVisible(boolean visible)
-
-
-
Method Detail
-
getText
public String getText()
-
setText
public void setText(String text)
-
setRichText
public void setRichText(SRichText text)
-
setupRichText
public SRichText setupRichText()
Description copied from interface:SComment
Set a empty rich text value and return the instance which to be edited
-
getRichText
public SRichText getRichText()
-
isVisible
public boolean isVisible()
-
setVisible
public void setVisible(boolean visible)
-
getAuthor
public String getAuthor()
-
setAuthor
public void setAuthor(String author)
-
clone
public AbstractCommentAdv clone()
- Specified by:
clone
in classAbstractCommentAdv
-
isRichText
public boolean isRichText()
-
-