added postId support in subclasses
This commit is contained in:
parent
433f677749
commit
51bbc2fee6
@ -77,7 +77,7 @@ public abstract class RedditPost {
|
||||
* Main constructor for a Reddit post.
|
||||
* @param title post's title
|
||||
* @param quarantine is this post in quarantine?
|
||||
* @param score
|
||||
* @param score post's score
|
||||
* @param postHint
|
||||
* @param crosspostable
|
||||
* @param over18
|
||||
@ -85,7 +85,8 @@ public abstract class RedditPost {
|
||||
* @param permalink
|
||||
* @param spoiler
|
||||
*/
|
||||
public RedditPost(String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
public RedditPost(String id, String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
this.postId = id;
|
||||
this.title = title;
|
||||
this.quarantine = quarantine;
|
||||
this.score = score;
|
||||
|
@ -22,4 +22,8 @@ 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) {
|
||||
super(id, title, quarantine, score, postHint, crosspostable, over18, author, permalink, spoiler);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -22,8 +22,8 @@ package twitter_techsupportgore_bot.reddit_handler;
|
||||
*/
|
||||
public class RedditPostLink extends RedditPost {
|
||||
|
||||
public RedditPostLink(String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
super(title, quarantine, score, postHint, crosspostable, over18, author, permalink, 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);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -22,4 +22,8 @@ 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) {
|
||||
super(id, title, quarantine, score, postHint, crosspostable, over18, author, permalink, spoiler);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -22,8 +22,8 @@ package twitter_techsupportgore_bot.reddit_handler;
|
||||
*/
|
||||
public class RedditPostVideo extends RedditPost{
|
||||
|
||||
public RedditPostVideo(String title, boolean quarantine, double score, String postHint, boolean crosspostable, boolean over18, String author, String permalink, boolean spoiler) {
|
||||
super(title, quarantine, score, postHint, crosspostable, over18, author, permalink, 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);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user