OSDN Git Service

Converter一通り実装できたか…?
[coroid/inqubus.git] / frontend / src / yukihane / saccubus / converter / profile / CommentProfile.java
1 package yukihane.saccubus.converter.profile;
2
3 /**
4  *
5  * @author yuki
6  */
7 public interface CommentProfile extends Inputable {
8
9     boolean isSelfAdjustCommentNum();
10
11     int getBackComment();
12
13     /**
14      * @return 昔の仕様でコメントダウンロードを行う場合はtrue. 現在の仕様で行う場合はfalse.
15      * {@link #isDownload()}がtrueの場合のみ必要です.
16      */
17     boolean isReduceComment();
18
19     /**
20      * @return 過去ログを取得する時点. 1970/1/1 00:00:00 GMT からの経過秒数(ミリ秒ではない).
21      * マイナス値指定の場合は過去ログ取得ではない.
22      */
23     long getBackLogPoint();
24 }