Interface Comment
-
- All Superinterfaces:
Change,java.io.Serializable
- All Known Implementing Classes:
CommentImpl
public interface Comment extends Change
The Interface Comment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImagegetImage()Gets the image.intgetNum()Gets the num.java.lang.StringgetPlain()Gets the plain.java.lang.StringgetTagged()Gets the tagged.voidsetImage(Image image)Sets the image.voidsetNum(int num)Sets the num.voidsetPlain(java.lang.String plain)Sets the plain.voidsetTagged(java.lang.String tagged)Sets the tagged.
-
-
-
Method Detail
-
getNum
int getNum()
Gets the num.- Returns:
- the num
-
setNum
void setNum(int num)
Sets the num.- Parameters:
num- the new num
-
getPlain
java.lang.String getPlain()
Gets the plain.- Returns:
- the plain
-
setPlain
void setPlain(java.lang.String plain)
Sets the plain.- Parameters:
plain- the new plain
-
getTagged
java.lang.String getTagged()
Gets the tagged.- Returns:
- the tagged
-
setTagged
void setTagged(java.lang.String tagged)
Sets the tagged.- Parameters:
tagged- the new tagged
-
-