added support for "isXXX"
is text ? image ? link ? video ?
This commit is contained in:
parent
97624621ae
commit
1a7e8c88cc
@ -194,4 +194,29 @@ public abstract class RedditPost {
|
||||
public String getPostId() {
|
||||
return postId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Is this post an image?
|
||||
* @return if the post is an image.
|
||||
*/
|
||||
public abstract boolean isImage();
|
||||
|
||||
/**
|
||||
* Is this post a text?
|
||||
* @return if the post is a text.
|
||||
*/
|
||||
public abstract boolean isText();
|
||||
|
||||
/**
|
||||
* Is this post a video?
|
||||
* @return if the post is a video.
|
||||
*/
|
||||
public abstract boolean isVideo();
|
||||
|
||||
|
||||
/**
|
||||
* Is this post a link?
|
||||
* @return if the post is a link.
|
||||
*/
|
||||
public abstract boolean isLink();
|
||||
}
|
||||
|
@ -22,8 +22,29 @@ package twitter_techsupportgore_bot.reddit_handler;
|
||||
*/
|
||||
public class RedditPostImage extends RedditPost {
|
||||
|
||||
public RedditPostImage(String id, String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
public RedditPostImage(String id, String title, boolean quarantine,
|
||||
double score, String postHint, boolean crosspostable,
|
||||
boolean over18, String author, String permalink, boolean spoiler) {
|
||||
super(id, title, quarantine, score, postHint, crosspostable, over18, author, permalink, spoiler);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isImage() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isText() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isVideo() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isLink() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -22,8 +22,30 @@ package twitter_techsupportgore_bot.reddit_handler;
|
||||
*/
|
||||
public class RedditPostLink extends RedditPost {
|
||||
|
||||
public RedditPostLink(String id, String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
public RedditPostLink(String id, String title, boolean quarantine,
|
||||
double score, String postHint, boolean crosspostable,
|
||||
boolean over18, String author, String permalink, boolean spoiler) {
|
||||
super(id, title, quarantine, score, postHint, crosspostable, over18, author, permalink, spoiler);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isImage() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isText() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isVideo() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isLink() {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -22,8 +22,29 @@ package twitter_techsupportgore_bot.reddit_handler;
|
||||
*/
|
||||
public class RedditPostText extends RedditPost {
|
||||
|
||||
public RedditPostText(String id, String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
public RedditPostText(String id, String title, boolean quarantine,
|
||||
double score, String postHint, boolean crosspostable,
|
||||
boolean over18, String author, String permalink, boolean spoiler) {
|
||||
super(id, title, quarantine, score, postHint, crosspostable, over18, author, permalink, spoiler);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isImage() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isText() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isVideo() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isLink() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -22,8 +22,30 @@ package twitter_techsupportgore_bot.reddit_handler;
|
||||
*/
|
||||
public class RedditPostVideo extends RedditPost{
|
||||
|
||||
public RedditPostVideo(String id, String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
public RedditPostVideo(String id, String title, boolean quarantine,
|
||||
double score, String postHint, boolean crosspostable,
|
||||
boolean over18, String author, String permalink, boolean spoiler) {
|
||||
super(id, title, quarantine, score, postHint, crosspostable, over18, author, permalink, spoiler);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isImage() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isText() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isVideo() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isLink() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user