*/
private void addAnnotations(final Attribute attrs) {
Attribute attributes = attrs;
while (attributes != null) {
if (attributes instanceof CustomAttribute) {
CustomAttribute customAttribute = (CustomAttribute) attributes;
byte[] bytes = customAttribute.getBytes();
try {
m_annotations.add(new ObjectInputStream(new ByteArrayInputStream(bytes)).readObject());
} catch (Exception e) {
System.err.println("WARNING: could not deserialize annotation due to: " + e.toString());
}