OSDN Git Service

4d0d1d1110f77e2a60aa98845db708985ed91628
[jcfa/jcfa.git] / jcfa / src / jp / igapyon / jcfa / vo / JcfaField.java
1 package jp.igapyon.jcfa.vo;
2
3 public class JcfaField extends JcfaNode {
4         protected String name;
5
6         protected String access;
7
8         protected String constantValue;
9
10         protected short constantValueType;
11
12         public String getName() {
13                 return name;
14         }
15
16         public void setName(String name) {
17                 this.name = name;
18         }
19
20         public String getAccess() {
21                 return access;
22         }
23
24         public void setAccess(String access) {
25                 this.access = access;
26         }
27
28         public String getConstantValue() {
29                 return constantValue;
30         }
31
32         public void setConstantValue(String constantValue) {
33                 this.constantValue = constantValue;
34         }
35
36         public short getConstantValueType() {
37                 return constantValueType;
38         }
39
40         public void setConstantValueType(short constantValueType) {
41                 this.constantValueType = constantValueType;
42         }
43 }