OSDN Git Service

merge.
[coroid/inqubus.git] / frontend / src / saccubus / converter / profile / CommentGetInfo.java
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 package saccubus.converter.profile;
6
7 /**
8  *
9  * @author yuki
10  */
11 public class CommentGetInfo {
12
13     private final boolean selfAdjustCommentNum;
14     private final int backComment;
15
16     public CommentGetInfo(boolean selfAdjustCommentNum, int backComment) {
17         this.selfAdjustCommentNum = selfAdjustCommentNum;
18         this.backComment = backComment;
19     }
20
21     public boolean isselfAdjustCommentNum() {
22         return selfAdjustCommentNum;
23     }
24
25     public int getBackComment() {
26         return backComment;
27     }
28 }