OSDN Git Service

save
authoriga <tosiki.iga@nifty.ne.jp>
Thu, 3 Apr 2014 12:33:40 +0000 (21:33 +0900)
committeriga <tosiki.iga@nifty.ne.jp>
Thu, 3 Apr 2014 12:33:40 +0000 (21:33 +0900)
25 files changed:
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemBoolean.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemByte.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemChar.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemDoubleHigh.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemDoubleLow.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemFloat.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemInt.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemLongHigh.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemLongLow.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemReturnAddress.java [new file with mode: 0644]
jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemShort.java [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItem.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemBoolean.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemByte.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemChar.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemDoubleHigh.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemDoubleLow.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemFloat.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemInt.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLocalVariable.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLongHigh.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLongLow.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemReference.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemReturnAddress.jcfa [new file with mode: 0644]
jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemShort.jcfa [new file with mode: 0644]

diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemBoolean.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemBoolean.java
new file mode 100644 (file)
index 0000000..f848ecf
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemBoolean extends JcfaItem {
+       protected boolean val;
+
+       public boolean isVal() {
+               return val;
+       }
+
+       public void setVal(boolean val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemByte.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemByte.java
new file mode 100644 (file)
index 0000000..d433458
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemByte extends JcfaItem {
+       protected byte val;
+
+       public byte getVal() {
+               return val;
+       }
+
+       public void setVal(byte val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemChar.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemChar.java
new file mode 100644 (file)
index 0000000..b289513
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemChar extends JcfaItem {
+       protected char val;
+
+       public char getVal() {
+               return val;
+       }
+
+       public void setVal(char val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemDoubleHigh.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemDoubleHigh.java
new file mode 100644 (file)
index 0000000..371ce6b
--- /dev/null
@@ -0,0 +1,16 @@
+package jp.igapyon.jcfa.vo.item;
+
+/**
+ * FIXME
+ */
+public class JcfaItemDoubleHigh extends JcfaItem {
+       protected int val;
+
+       public int getVal() {
+               return val;
+       }
+
+       public void setVal(int val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemDoubleLow.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemDoubleLow.java
new file mode 100644 (file)
index 0000000..31d5e9d
--- /dev/null
@@ -0,0 +1,16 @@
+package jp.igapyon.jcfa.vo.item;
+
+/**
+ * FIXME
+ */
+public class JcfaItemDoubleLow extends JcfaItem {
+       protected int val;
+
+       public int getVal() {
+               return val;
+       }
+
+       public void setVal(int val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemFloat.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemFloat.java
new file mode 100644 (file)
index 0000000..e16333c
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemFloat extends JcfaItem {
+       protected float val;
+
+       public float getVal() {
+               return val;
+       }
+
+       public void setVal(float val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemInt.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemInt.java
new file mode 100644 (file)
index 0000000..bd86372
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemInt extends JcfaItem {
+       protected int val;
+
+       public int getVal() {
+               return val;
+       }
+
+       public void setVal(int val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemLongHigh.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemLongHigh.java
new file mode 100644 (file)
index 0000000..4aedcc9
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemLongHigh extends JcfaItem {
+       protected int val;
+
+       public int getVal() {
+               return val;
+       }
+
+       public void setVal(int val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemLongLow.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemLongLow.java
new file mode 100644 (file)
index 0000000..fcd1cbe
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemLongLow extends JcfaItem {
+       protected int val;
+
+       public int getVal() {
+               return val;
+       }
+
+       public void setVal(int val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemReturnAddress.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemReturnAddress.java
new file mode 100644 (file)
index 0000000..a9a2b9a
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemReturnAddress extends JcfaItem {
+       protected int val;
+
+       public int getVal() {
+               return val;
+       }
+
+       public void setVal(int val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemShort.java b/jcfa/src/jp/igapyon/jcfa/vo/item/JcfaItemShort.java
new file mode 100644 (file)
index 0000000..cce1c57
--- /dev/null
@@ -0,0 +1,13 @@
+package jp.igapyon.jcfa.vo.item;
+
+public class JcfaItemShort extends JcfaItem {
+       protected short val;
+
+       public short getVal() {
+               return val;
+       }
+
+       public void setVal(short val) {
+               this.val = val;
+       }
+}
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItem.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItem.jcfa
new file mode 100644 (file)
index 0000000..3eb37cd
--- /dev/null
@@ -0,0 +1,18 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItem {
+       /** Constructor. */
+       public JcfaItem() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial java/lang/Object#<init>()V TODO get args count from
+                * signature. null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@83d070
+                */
+
+               /* 4: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemBoolean.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemBoolean.jcfa
new file mode 100644 (file)
index 0000000..3540581
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemBoolean extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected boolean val;
+
+       /** Constructor. */
+       public JcfaItemBoolean() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@1b6aea4
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public boolean isVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. boolean
+        */
+       public void setVal(boolean arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemByte.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemByte.jcfa
new file mode 100644 (file)
index 0000000..b2ff9b2
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemByte extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected byte val;
+
+       /** Constructor. */
+       public JcfaItemByte() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@5eae58
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public byte getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. byte
+        */
+       public void setVal(byte arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemChar.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemChar.jcfa
new file mode 100644 (file)
index 0000000..d8a5f29
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemChar extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected char val;
+
+       /** Constructor. */
+       public JcfaItemChar() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@3a4d82
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public char getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. char
+        */
+       public void setVal(char arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemDoubleHigh.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemDoubleHigh.jcfa
new file mode 100644 (file)
index 0000000..af2bc1a
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemDoubleHigh extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected int val;
+
+       /** Constructor. */
+       public JcfaItemDoubleHigh() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@48b1ca
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public int getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. int
+        */
+       public void setVal(int arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemDoubleLow.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemDoubleLow.jcfa
new file mode 100644 (file)
index 0000000..f7da1a0
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemDoubleLow extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected int val;
+
+       /** Constructor. */
+       public JcfaItemDoubleLow() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@1e9749c
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public int getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. int
+        */
+       public void setVal(int arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemFloat.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemFloat.jcfa
new file mode 100644 (file)
index 0000000..4e6c01d
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemFloat extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected float val;
+
+       /** Constructor. */
+       public JcfaItemFloat() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@da1a1f
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public float getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: freturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. float
+        */
+       public void setVal(float arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: fload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemInt.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemInt.jcfa
new file mode 100644 (file)
index 0000000..2d0ae39
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemInt extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected int val;
+
+       /** Constructor. */
+       public JcfaItemInt() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@15f73e9
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public int getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. int
+        */
+       public void setVal(int arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLocalVariable.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLocalVariable.jcfa
new file mode 100644 (file)
index 0000000..b65b639
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemLocalVariable extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected jp.igapyon.jcfa.vo.JcfaLocalVariable localVariable;
+
+       /** Constructor. */
+       public JcfaItemLocalVariable() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@15268b
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public jp.igapyon.jcfa.vo.JcfaLocalVariable getLocalVariable() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: areturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. jp.igapyon.jcfa.vo.JcfaLocalVariable
+        */
+       public void setLocalVariable(jp.igapyon.jcfa.vo.JcfaLocalVariable arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: aload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLongHigh.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLongHigh.jcfa
new file mode 100644 (file)
index 0000000..a1ca984
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemLongHigh extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected int val;
+
+       /** Constructor. */
+       public JcfaItemLongHigh() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@9598c0
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public int getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. int
+        */
+       public void setVal(int arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLongLow.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemLongLow.jcfa
new file mode 100644 (file)
index 0000000..1dacecb
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemLongLow extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected int val;
+
+       /** Constructor. */
+       public JcfaItemLongLow() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@1e6c23c
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public int getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. int
+        */
+       public void setVal(int arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemReference.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemReference.jcfa
new file mode 100644 (file)
index 0000000..2c5e690
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemReference extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected java.lang.String object;
+
+       /** Constructor. */
+       public JcfaItemReference() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@e9055b
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public java.lang.String getObject() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: areturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. java.lang.String
+        */
+       public void setObject(java.lang.String arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: aload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemReturnAddress.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemReturnAddress.jcfa
new file mode 100644 (file)
index 0000000..b3ba616
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemReturnAddress extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected int val;
+
+       /** Constructor. */
+       public JcfaItemReturnAddress() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@1b2d71d
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public int getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. int
+        */
+       public void setVal(int arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file
diff --git a/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemShort.jcfa b/jcfa/testJavaClass/output/jp/igapyon/jcfa/vo/item/JcfaItemShort.jcfa
new file mode 100644 (file)
index 0000000..a7dc01f
--- /dev/null
@@ -0,0 +1,56 @@
+package jp.igapyon.jcfa.vo.item;
+
+/** TODO import func. is missing. */
+public class JcfaItemShort extends jp.igapyon.jcfa.vo.item.JcfaItem {
+       /**  */
+       protected short val;
+
+       /** Constructor. */
+       public JcfaItemShort() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: invokespecial jp/igapyon/jcfa/vo/item/JcfaItem#<init>()V TODO get
+                * args count from signature.
+                * null#jp.igapyon.jcfa.vo.item.JcfaItemLocalVariable@841c1
+                */
+
+               /* 4: return */
+       }
+
+       /** Method. */
+       public short getVal() {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: getfield TODO unsupported opcode
+                */
+
+               /*
+                * 4: ireturn TODO unsupported opcode
+                */
+       }
+
+       /**
+        * Method. short
+        */
+       public void setVal(short arg0) {
+               /*
+                * 0: aload_0 this
+                */
+
+               /*
+                * 1: iload_1 TODO unsupported opcode
+                */
+
+               /*
+                * 2: putfield TODO unsupported opcode
+                */
+
+               /* 5: return */
+       }
+}
\ No newline at end of file