You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
714 B

package com.github.jreddit.parser.entity.imaginary;
import java.util.List;
import com.github.jreddit.parser.entity.Submission;
public class FullSubmission {
private Submission submission;
private List<CommentTreeElement> commentTree;
public FullSubmission(Submission submission, List<CommentTreeElement> commentTree) {
this.submission = submission;
this.commentTree = commentTree;
}
/**
*
* @return the submission
*/
public Submission getSubmission() {
return submission;
}
/**
*
* @return the commentTree
*/
public List<CommentTreeElement> getCommentTree() {
return commentTree;
}
}