protected Node(JAXBClass klass, ProgramElementDoc property, String name, AnnotationDesc xmlAttributeAnnotation) {
super(klass, property, name, xmlAttributeAnnotation);
}
public boolean isRequired(){
ElementValuePair elementValuePair = getElementAttribute("required");
if(elementValuePair != null){
return "true".equalsIgnoreCase(elementValuePair.value().toString());
}
return false;
}