1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.property;
17
18 import java.io.File;
19
20 public class DefaultPropertyStoreContext extends DefaultPropertyContext implements PropertyStoreContext {
21
22
23 File file;
24
25
26 String comment;
27
28 String encoding;
29
30 @Override
31 public File getFile() {
32 return file;
33 }
34
35 public void setFile(File file) {
36 this.file = file;
37 }
38
39 @Override
40 public String getComment() {
41 return comment;
42 }
43
44 public void setComment(String comment) {
45 this.comment = comment;
46 }
47
48 @Override
49 public String getEncoding() {
50 return encoding;
51 }
52
53 public void setEncoding(String encoding) {
54 this.encoding = encoding;
55 }
56 }