/* 133: */ /* 134: */ public void enumConstValue(int typeNameIndex, int constNameIndex) /* 135: */ throws IOException /* 136: */ { /* 137:298 */ this.output.write(101); /* 138:299 */ write16bit(typeNameIndex); /* 139:300 */ write16bit(constNameIndex); /* 140: */ }
/* 60: */ /* 61: */ public void memberValuePair(int memberNameIndex) /* 62: */ throws IOException /* 63: */ { /* 64:164 */ write16bit(memberNameIndex); /* 65: */ }
/* 47: */ /* 48: */ public void annotation(int typeIndex, int numMemberValuePairs) /* 49: */ throws IOException /* 50: */ { /* 51:136 */ write16bit(typeIndex); /* 52:137 */ write16bit(numMemberValuePairs); /* 53: */ }
/* 35: */ /* 36: */ public void numAnnotations(int num) /* 37: */ throws IOException /* 38: */ { /* 39:106 */ write16bit(num); /* 40: */ }
/* 160: */ /* 161: */ public void arrayValue(int numValues) /* 162: */ throws IOException /* 163: */ { /* 164:344 */ this.output.write(91); /* 165:345 */ write16bit(numValues); /* 166: */ }
/* 147: */ /* 148: */ public void classInfoIndex(int index) /* 149: */ throws IOException /* 150: */ { /* 151:320 */ this.output.write(99); /* 152:321 */ write16bit(index); /* 153: */ }
/* 120: */ /* 121: */ public void constValueIndex(int tag, int index) /* 122: */ throws IOException /* 123: */ { /* 124:268 */ this.output.write(tag); /* 125:269 */ write16bit(index); /* 126: */ }