}
return annotationEntries;
}
private WeaselAnnotationEntry readAnnotationEntry(DataInputStream dataInputStream) throws IOException{
WeaselAnnotationEntry annotationEntry = new WeaselAnnotationEntry();
annotationEntry.name = readString(dataInputStream);
annotationEntry.type = dataInputStream.readInt();
annotationEntry.value = readAnnotationEntryValue(dataInputStream, annotationEntry.type);
return annotationEntry;
}