View Javadoc

1   /**
2    * Copyright 2010-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.util;
17  
18  import java.io.File;
19  import java.util.List;
20  
21  public class MetaInfContext {
22  
23  	File baseDir;
24  	File outputFile;
25  	String prefix = "classpath:";
26  	boolean sort = true;
27  	List<String> includes;
28  	List<String> excludes;
29  	boolean addPropertiesFile;
30  	boolean addLineCount;
31  
32  	public File getBaseDir() {
33  		return baseDir;
34  	}
35  
36  	public void setBaseDir(File baseDir) {
37  		this.baseDir = baseDir;
38  	}
39  
40  	public File getOutputFile() {
41  		return outputFile;
42  	}
43  
44  	public void setOutputFile(File outputFile) {
45  		this.outputFile = outputFile;
46  	}
47  
48  	public String getPrefix() {
49  		return prefix;
50  	}
51  
52  	public void setPrefix(String prefix) {
53  		this.prefix = prefix;
54  	}
55  
56  	public boolean isSort() {
57  		return sort;
58  	}
59  
60  	public void setSort(boolean sort) {
61  		this.sort = sort;
62  	}
63  
64  	public List<String> getIncludes() {
65  		return includes;
66  	}
67  
68  	public void setIncludes(List<String> includes) {
69  		this.includes = includes;
70  	}
71  
72  	public List<String> getExcludes() {
73  		return excludes;
74  	}
75  
76  	public void setExcludes(List<String> excludes) {
77  		this.excludes = excludes;
78  	}
79  
80  	public boolean isAddPropertiesFile() {
81  		return addPropertiesFile;
82  	}
83  
84  	public void setAddPropertiesFile(boolean addPropertiesFile) {
85  		this.addPropertiesFile = addPropertiesFile;
86  	}
87  
88  	public boolean isAddLineCount() {
89  		return addLineCount;
90  	}
91  
92  	public void setAddLineCount(boolean addLineCount) {
93  		this.addLineCount = addLineCount;
94  	}
95  }