View Javadoc

1   package org.catacomb.interlish.interact;
2   
3   import java.io.File;
4   
5   
6   public class CodgerTask {
7   
8       String[] exports;
9       File rootDir;
10  
11  
12      public CodgerTask(File f, String[] sa) {
13          rootDir = f;
14          exports = sa;
15      }
16  
17      public File getRootDir() {
18          return rootDir;
19      }
20  
21      public String[] getExports() {
22          return exports;
23      }
24  
25  }