OSDN Git Service

save
[jcfa/jcfa.git] / jcfa / src / jp / igapyon / jcfa / vo / JcfaMethod.java
index 3fb8241..2fb1128 100644 (file)
@@ -8,9 +8,9 @@ public class JcfaMethod extends JcfaNode {
 
        protected String type;
 
-       protected final List<String> arugumentTypeList = new ArrayList<String>();;
+       protected final List<String> arugumentTypeList = new ArrayList<String>();
 
-       protected String access;
+       protected String access;;
 
        protected final List<JcfaCode> codeList = new ArrayList<JcfaCode>();
 
@@ -28,6 +28,10 @@ public class JcfaMethod extends JcfaNode {
                return codeList;
        }
 
+       public JcfaFrame getFrame() {
+               return frame;
+       }
+
        public String getName() {
                return name;
        }
@@ -47,5 +51,4 @@ public class JcfaMethod extends JcfaNode {
        public void setType(String type) {
                this.type = type;
        }
-
 }