OSDN Git Service

merge.
[coroid/inqubus.git] / frontend / src / saccubus / converter / profile / OutputFileSetting.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 OutputFileSetting {
12
13     private final SFile file;
14     private final boolean convert;
15     private final boolean appendPrefixVideoId;
16     private final boolean addComment;
17     private final boolean addTcomment;
18
19     public OutputFileSetting(SFile file, boolean convert, boolean appendPrefixVideoId, boolean addComment,
20             boolean addTcomment) {
21         this.file = file;
22         this.convert = convert;
23         this.appendPrefixVideoId = appendPrefixVideoId;
24         this.addComment = addComment;
25         this.addTcomment = addTcomment;
26     }
27
28     public boolean isConvert() {
29         return convert;
30     }
31
32     public boolean isAppendPrefixVideoId() {
33         return appendPrefixVideoId;
34     }
35
36     public boolean isAddComment() {
37         return addComment;
38     }
39
40     public boolean isAddTcomment() {
41         return addTcomment;
42     }
43
44     public SFile getFile() {
45         return file;
46     }
47 }