Example #1
0
 private List<AnnotationBo> readAnnotation(Buffer buffer) {
   AnnotationBoList annotationBoList = new AnnotationBoList();
   annotationBoList.readValue(buffer);
   return annotationBoList.getAnnotationBoList();
 }
Example #2
0
 private void writeAnnotation(Buffer buffer) {
   AnnotationBoList annotationBo = new AnnotationBoList(this.annotationBoList);
   annotationBo.writeValue(buffer);
 }