1 package saccubus.converter.classic.profile;
9 public class OutputFileSetting implements yukihane.saccubus.converter.profile.OutputProfile {
11 private final SFile file;
12 private final boolean convert;
13 private final boolean appendPrefixVideoId;
14 private final boolean addComment;
15 private final boolean addTcomment;
17 public OutputFileSetting(SFile file, boolean convert, boolean appendPrefixVideoId, boolean addComment,
18 boolean addTcomment) {
20 this.convert = convert;
21 this.appendPrefixVideoId = appendPrefixVideoId;
22 this.addComment = addComment;
23 this.addTcomment = addTcomment;
27 public boolean isConvert() {
32 public boolean isAppendPrefixVideoId() {
33 return appendPrefixVideoId;
37 public boolean isAddComment() {
42 public boolean isAddTcomment() {
47 public SFile getFile() {
52 public File getDir() {
53 throw new UnsupportedOperationException("Not supported yet.");
57 public String getFileName() {
58 throw new UnsupportedOperationException("Not supported yet.");