OSDN Git Service

過去ログ取得時点をConverterコンストラクタ引数からProfileに移動
[coroid/inqubus.git] / frontend / src / saccubus / converter / classic / profile / InputFileSetting.java
index 7870bb8..0e164fb 100644 (file)
@@ -14,17 +14,19 @@ public class InputFileSetting implements yukihane.saccubus.converter.profile.Inp
     private final boolean download;
     private final boolean delete;
     private final CommentGetInfo commentGetInfo;
+    private final String backLogPoint;
 
     /**
      * @param file 対象ファイル.
      * @param download ダウンロードする必要があればtrue, ローカルファイルを用いるのであればfalse.
      * @param delete 変換後にファイルを削除するのであればtrue, 残したままにするのであればfalse.
      */
-    public InputFileSetting(SFile file, boolean download, boolean delete, CommentGetInfo cominfo) {
+    public InputFileSetting(SFile file, boolean download, boolean delete, CommentGetInfo cominfo, String backLogPoint) {
         this.file = file;
         this.download = download;
         this.delete = delete;
         this.commentGetInfo = cominfo;
+        this.backLogPoint = backLogPoint;
     }
 
     @Override
@@ -55,4 +57,9 @@ public class InputFileSetting implements yukihane.saccubus.converter.profile.Inp
     public boolean isReduceComment() {
         return commentGetInfo.isReduceComment();
     }
+
+    @Override
+    public String getBackLogPoint() {
+        return backLogPoint;
+    }
 }