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 commentTree; public FullSubmission(Submission submission, List commentTree) { this.submission = submission; this.commentTree = commentTree; } /** * * @return the submission */ public Submission getSubmission() { return submission; } /** * * @return the commentTree */ public List getCommentTree() { return commentTree; } }