public class BlogEntry extends Object
| Constructor and Description |
|---|
BlogEntry() |
BlogEntry(Long id,
String author,
String category,
String title,
Date postDate,
String body) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAuthor() |
String |
getBody() |
String |
getCategory() |
List<Comment> |
getComments() |
Long |
getId() |
int |
getNumComments() |
Date |
getPostDate() |
List<String> |
getTags() |
String |
getTitle() |
void |
setAuthor(String author) |
void |
setBody(String body) |
void |
setCategory(String category) |
void |
setComments(List<Comment> comments) |
void |
setId(Long id) |
void |
setPostDate(Date postDate) |
void |
setTags(List<String> tags) |
void |
setTitle(String title) |
public String getAuthor()
public void setAuthor(String author)
public String getBody()
public void setBody(String body)
public String getCategory()
public void setCategory(String category)
public Long getId()
public void setId(Long id)
public Date getPostDate()
public void setPostDate(Date postDate)
public String getTitle()
public void setTitle(String title)
public int getNumComments()
Copyright © 2008-2015. All Rights Reserved.