if(properties != null) {
for(Iterator i = this.properties.entrySet().iterator(); i.hasNext(); ) {
Entry entry = (Entry) i.next();
String name = (String) entry.getKey();
AnnotationValue value = (AnnotationValue) entry.getValue();
setProperty(name, value);
}
}
}