String sequencedValue = (String) complexType.getAttributesMap().get(SDOConstants.SDOXML_SEQUENCE_QNAME);
if (sequencedValue != null) {
Boolean sequencedBoolean = new Boolean(sequencedValue);
currentType.setSequenced(sequencedBoolean.booleanValue());
}
Annotation annotation = complexType.getAnnotation();
if (annotation != null) {
java.util.List documentation = annotation.getDocumentation();
if ((documentation != null) && (documentation.size() > 0)) {
currentType.setInstanceProperty(SDOConstants.DOCUMENTATION_PROPERTY, documentation);
}
}
currentType.preInitialize(packageName, namespaceResolvers);