OSDN Git Service

save
[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 type;
7
8         protected String access;
9
10         protected String constantValue;
11
12         public String getAccess() {
13                 return access;
14         }
15
16         public String getConstantValue() {
17                 return constantValue;
18         }
19
20         public String getName() {
21                 return name;
22         }
23
24         public String getType() {
25                 return type;
26         }
27
28         public void setAccess(String access) {
29                 this.access = access;
30         }
31
32         public void setConstantValue(String constantValue) {
33                 this.constantValue = constantValue;
34         }
35
36         public void setName(String name) {
37                 this.name = name;
38         }
39
40         public void setType(String type) {
41                 this.type = type;
42         }
43 }