OSDN Git Service

8e6b3e0988ceb59098ec653605dd7d09987432fc
[jcfa/jcfa.git] / jcfa / src / jp / igapyon / jcfa / vo / JcfaMethod.java
1 package jp.igapyon.jcfa.vo;
2
3 public class JcfaMethod extends JcfaNode {
4         protected String name;
5
6         protected String type;
7
8         protected String access;
9
10         public String getAccess() {
11                 return access;
12         }
13
14         public String getName() {
15                 return name;
16         }
17
18         public String getType() {
19                 return type;
20         }
21
22         public void setAccess(String access) {
23                 this.access = access;
24         }
25
26         public void setName(String name) {
27                 this.name = name;
28         }
29
30         public void setType(String type) {
31                 this.type = type;
32         }
33
34 }