OSDN Git Service

merge.
[coroid/inqubus.git] / frontend / src / saccubus / converter / profile / InputFileSetting.java
1 /* $Id$ */
2 package saccubus.converter.profile;
3
4 /**
5  *
6  * @author yuki
7  */
8 public class InputFileSetting {
9
10     private final SFile file;
11     private final boolean download;
12     private final boolean delete;
13
14     /**
15      * @param file \91Î\8fÛ\83t\83@\83C\83\8b.
16      * @param download \83_\83E\83\93\83\8d\81[\83h\82·\82é\95K\97v\82ª\82 \82ê\82Îtrue, \83\8d\81[\83J\83\8b\83t\83@\83C\83\8b\82ð\97p\82¢\82é\82Ì\82Å\82 \82ê\82Îfalse.
17      * @param delete \95Ï\8a·\8cã\82É\83t\83@\83C\83\8b\82ð\8dí\8f\9c\82·\82é\82Ì\82Å\82 \82ê\82Îtrue, \8ec\82µ\82½\82Ü\82Ü\82É\82·\82é\82Ì\82Å\82 \82ê\82Îfalse.
18      */
19     public InputFileSetting(SFile file, boolean download, boolean delete) {
20         this.file = file;
21         this.download = download;
22         this.delete = delete;
23     }
24
25     public SFile getFile() {
26         return file;
27     }
28
29     public boolean isDownload() {
30         return download;
31     }
32
33     public boolean isDelete() {
34         return delete;
35     }
36 }
37