/* */ }
/* */
/* */ public void setAnnotations(Annotation[][] params)
/* */ {
/* 147 */ ByteArrayOutputStream output = new ByteArrayOutputStream();
/* 148 */ AnnotationsWriter writer = new AnnotationsWriter(output, this.constPool);
/* */ try {
/* 150 */ int n = params.length;
/* 151 */ writer.numParameters(n);
/* 152 */ for (int i = 0; i < n; i++) {
/* 153 */ Annotation[] anno = params[i];
/* 154 */ writer.numAnnotations(anno.length);
/* 155 */ for (int j = 0; j < anno.length; j++) {
/* 156 */ anno[j].write(writer);
/* */ }
/* */ }
/* 159 */ writer.close();
/* */ }
/* */ catch (IOException e) {
/* 162 */ throw new RuntimeException(e);
/* */ }
/* */