Interface Comments
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CommentsImpl
public interface Comments extends java.io.SerializableThe Interface Comments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Comment>getComments()Gets the comments.intgetShowTitles()Gets the show titles.voidsetComments(java.util.List<Comment> comments)Sets the comments.voidsetShowTitles(int showTitles)Sets the show titles.
-
-
-
Method Detail
-
getShowTitles
int getShowTitles()
Gets the show titles.- Returns:
- the show titles
-
setShowTitles
void setShowTitles(int showTitles)
Sets the show titles.- Parameters:
showTitles- the new show titles
-
getComments
java.util.List<Comment> getComments()
Gets the comments.- Returns:
- the comments
- See Also:
Comment
-
-