use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.
the class FacesAttribute$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesAttribute facesAttribute, RuntimeContext context) throws Exception {
if (facesAttribute == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesAttribute.class != facesAttribute.getClass()) {
context.unexpectedSubclass(writer, facesAttribute, FacesAttribute.class);
return;
}
context.beforeMarshal(facesAttribute, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = facesAttribute.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesAttribute, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesAttribute.getDescriptions();
} catch (final Exception e) {
context.getterError(facesAttribute, "descriptions", FacesAttribute.class, "getDescriptions", e);
}
if (descriptions != null) {
for (final Text descriptionsItem : descriptions) {
if (descriptionsItem != null) {
writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
writeText(writer, descriptionsItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesAttribute, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesAttribute.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesAttribute, "displayNames", FacesAttribute.class, "getDisplayNames", e);
}
if (displayNames != null) {
for (final Text displayNamesItem : displayNames) {
if (displayNamesItem != null) {
writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
writeText(writer, displayNamesItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesAttribute, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesAttribute.icon;
if (icon != null) {
for (final Icon iconItem : icon) {
if (iconItem != null) {
writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
writeIcon(writer, iconItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesAttribute, "icon");
}
}
}
// ELEMENT: attributeName
final String attributeNameRaw = facesAttribute.attributeName;
String attributeName = null;
try {
attributeName = Adapters.collapsedStringAdapterAdapter.marshal(attributeNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesAttribute, "attributeName", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (attributeName != null) {
writer.writeStartElement(prefix, "attribute-name", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(attributeName);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesAttribute, "attributeName");
}
// ELEMENT: attributeClass
final String attributeClassRaw = facesAttribute.attributeClass;
String attributeClass = null;
try {
attributeClass = Adapters.collapsedStringAdapterAdapter.marshal(attributeClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesAttribute, "attributeClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (attributeClass != null) {
writer.writeStartElement(prefix, "attribute-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(attributeClass);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesAttribute, "attributeClass");
}
// ELEMENT: defaultValue
final String defaultValueRaw = facesAttribute.defaultValue;
String defaultValue = null;
try {
defaultValue = Adapters.collapsedStringAdapterAdapter.marshal(defaultValueRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesAttribute, "defaultValue", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (defaultValue != null) {
writer.writeStartElement(prefix, "default-value", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(defaultValue);
writer.writeEndElement();
}
// ELEMENT: suggestedValue
final String suggestedValueRaw = facesAttribute.suggestedValue;
String suggestedValue = null;
try {
suggestedValue = Adapters.collapsedStringAdapterAdapter.marshal(suggestedValueRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesAttribute, "suggestedValue", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (suggestedValue != null) {
writer.writeStartElement(prefix, "suggested-value", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(suggestedValue);
writer.writeEndElement();
}
// ELEMENT: attributeExtension
final List<FacesAttributeExtension> attributeExtension = facesAttribute.attributeExtension;
if (attributeExtension != null) {
for (final FacesAttributeExtension attributeExtensionItem : attributeExtension) {
if (attributeExtensionItem != null) {
writer.writeStartElement(prefix, "attribute-extension", "http://java.sun.com/xml/ns/javaee");
writeFacesAttributeExtension(writer, attributeExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(facesAttribute, LifecycleCallback.NONE);
}
use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.
the class FacesBehavior$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesBehavior facesBehavior, RuntimeContext context) throws Exception {
if (facesBehavior == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesBehavior.class != facesBehavior.getClass()) {
context.unexpectedSubclass(writer, facesBehavior, FacesBehavior.class);
return;
}
context.beforeMarshal(facesBehavior, LifecycleCallback.NONE);
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesBehavior.getDescriptions();
} catch (final Exception e) {
context.getterError(facesBehavior, "descriptions", FacesBehavior.class, "getDescriptions", e);
}
if (descriptions != null) {
for (final Text descriptionsItem : descriptions) {
if (descriptionsItem != null) {
writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
writeText(writer, descriptionsItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesBehavior, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesBehavior.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesBehavior, "displayNames", FacesBehavior.class, "getDisplayNames", e);
}
if (displayNames != null) {
for (final Text displayNamesItem : displayNames) {
if (displayNamesItem != null) {
writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
writeText(writer, displayNamesItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesBehavior, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesBehavior.icon;
if (icon != null) {
for (final Icon iconItem : icon) {
if (iconItem != null) {
writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
writeIcon(writer, iconItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesBehavior, "icon");
}
}
}
// ELEMENT: behaviorId
final String behaviorIdRaw = facesBehavior.behaviorId;
String behaviorId = null;
try {
behaviorId = Adapters.collapsedStringAdapterAdapter.marshal(behaviorIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesBehavior, "behaviorId", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (behaviorId != null) {
writer.writeStartElement(prefix, "behavior-id", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(behaviorId);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesBehavior, "behaviorId");
}
// ELEMENT: behaviorClass
final String behaviorClassRaw = facesBehavior.behaviorClass;
String behaviorClass = null;
try {
behaviorClass = Adapters.collapsedStringAdapterAdapter.marshal(behaviorClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesBehavior, "behaviorClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (behaviorClass != null) {
writer.writeStartElement(prefix, "behavior-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(behaviorClass);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesBehavior, "behaviorClass");
}
// ELEMENT: attribute
final List<FacesAttribute> attribute = facesBehavior.attribute;
if (attribute != null) {
for (final FacesAttribute attributeItem : attribute) {
writer.writeStartElement(prefix, "attribute", "http://java.sun.com/xml/ns/javaee");
if (attributeItem != null) {
writeFacesAttribute(writer, attributeItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: property
final List<FacesProperty> property = facesBehavior.property;
if (property != null) {
for (final FacesProperty propertyItem : property) {
writer.writeStartElement(prefix, "property", "http://java.sun.com/xml/ns/javaee");
if (propertyItem != null) {
writeFacesProperty(writer, propertyItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: behaviorExtension
final List<FacesBehaviorExtension> behaviorExtension = facesBehavior.behaviorExtension;
if (behaviorExtension != null) {
for (final FacesBehaviorExtension behaviorExtensionItem : behaviorExtension) {
if (behaviorExtensionItem != null) {
writer.writeStartElement(prefix, "behavior-extension", "http://java.sun.com/xml/ns/javaee");
writeFacesBehaviorExtension(writer, behaviorExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(facesBehavior, LifecycleCallback.NONE);
}
use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.
the class FacesBehavior$JAXB method _read.
public static final FacesBehavior _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FacesBehavior facesBehavior = new FacesBehavior();
context.beforeUnmarshal(facesBehavior, LifecycleCallback.NONE);
ArrayList<Text> descriptions = null;
ArrayList<Text> displayNames = null;
LocalCollection<Icon> icon = null;
List<FacesAttribute> attribute1 = null;
List<FacesProperty> property = null;
List<FacesBehaviorExtension> behaviorExtension = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("faces-config-behaviorType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FacesBehavior.class);
}
}
// Read attributes
for (final Attribute attribute : reader.getAttributes()) {
if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
context.unexpectedAttribute(attribute);
}
}
// Read elements
for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
if (("description" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: descriptions
final Text descriptionsItem = readText(elementReader, context);
if (descriptions == null) {
descriptions = new ArrayList<Text>();
}
descriptions.add(descriptionsItem);
} else if (("display-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: displayNames
final Text displayNamesItem = readText(elementReader, context);
if (displayNames == null) {
displayNames = new ArrayList<Text>();
}
displayNames.add(displayNamesItem);
} else if (("icon" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: icon
final Icon iconItem = readIcon(elementReader, context);
if (icon == null) {
icon = facesBehavior.icon;
if (icon != null) {
icon.clear();
} else {
icon = new LocalCollection<Icon>();
}
}
icon.add(iconItem);
} else if (("behavior-id" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: behaviorId
final String behaviorIdRaw = elementReader.getElementAsString();
final String behaviorId;
try {
behaviorId = Adapters.collapsedStringAdapterAdapter.unmarshal(behaviorIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesBehavior.behaviorId = behaviorId;
} else if (("behavior-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: behaviorClass
final String behaviorClassRaw = elementReader.getElementAsString();
final String behaviorClass;
try {
behaviorClass = Adapters.collapsedStringAdapterAdapter.unmarshal(behaviorClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesBehavior.behaviorClass = behaviorClass;
} else if (("attribute" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: attribute
final FacesAttribute attributeItem = readFacesAttribute(elementReader, context);
if (attribute1 == null) {
attribute1 = facesBehavior.attribute;
if (attribute1 != null) {
attribute1.clear();
} else {
attribute1 = new ArrayList<FacesAttribute>();
}
}
attribute1.add(attributeItem);
} else if (("property" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: property
final FacesProperty propertyItem = readFacesProperty(elementReader, context);
if (property == null) {
property = facesBehavior.property;
if (property != null) {
property.clear();
} else {
property = new ArrayList<FacesProperty>();
}
}
property.add(propertyItem);
} else if (("behavior-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: behaviorExtension
final FacesBehaviorExtension behaviorExtensionItem = readFacesBehaviorExtension(elementReader, context);
if (behaviorExtension == null) {
behaviorExtension = facesBehavior.behaviorExtension;
if (behaviorExtension != null) {
behaviorExtension.clear();
} else {
behaviorExtension = new ArrayList<FacesBehaviorExtension>();
}
}
behaviorExtension.add(behaviorExtensionItem);
} else {
// just here ATM to not prevent users to get JSF 2.2 feature because we can't read it
// TODO: handle it properly
// context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "display-name"), new QName("http://java.sun.com/xml/ns/javaee", "icon"), new QName("http://java.sun.com/xml/ns/javaee", "behavior-id"), new QName("http://java.sun.com/xml/ns/javaee", "behavior-class"), new QName("http://java.sun.com/xml/ns/javaee", "attribute"), new QName("http://java.sun.com/xml/ns/javaee", "property"), new QName("http://java.sun.com/xml/ns/javaee", "behavior-extension"));
}
}
if (descriptions != null) {
try {
facesBehavior.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesBehavior.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames != null) {
try {
facesBehavior.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesBehavior.class, "setDisplayNames", Text[].class, e);
}
}
if (icon != null) {
facesBehavior.icon = icon;
}
if (attribute1 != null) {
facesBehavior.attribute = attribute1;
}
if (property != null) {
facesBehavior.property = property;
}
if (behaviorExtension != null) {
facesBehavior.behaviorExtension = behaviorExtension;
}
context.afterUnmarshal(facesBehavior, LifecycleCallback.NONE);
return facesBehavior;
}
use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.
the class FacesManagedBean$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesManagedBean facesManagedBean, RuntimeContext context) throws Exception {
if (facesManagedBean == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesManagedBean.class != facesManagedBean.getClass()) {
context.unexpectedSubclass(writer, facesManagedBean, FacesManagedBean.class);
return;
}
context.beforeMarshal(facesManagedBean, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = facesManagedBean.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesManagedBean, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesManagedBean.getDescriptions();
} catch (final Exception e) {
context.getterError(facesManagedBean, "descriptions", FacesManagedBean.class, "getDescriptions", e);
}
if (descriptions != null) {
for (final Text descriptionsItem : descriptions) {
if (descriptionsItem != null) {
writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
writeText(writer, descriptionsItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesManagedBean, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesManagedBean.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesManagedBean, "displayNames", FacesManagedBean.class, "getDisplayNames", e);
}
if (displayNames != null) {
for (final Text displayNamesItem : displayNames) {
if (displayNamesItem != null) {
writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
writeText(writer, displayNamesItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesManagedBean, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesManagedBean.icon;
if (icon != null) {
for (final Icon iconItem : icon) {
if (iconItem != null) {
writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
writeIcon(writer, iconItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesManagedBean, "icon");
}
}
}
// ELEMENT: managedBeanName
final String managedBeanNameRaw = facesManagedBean.managedBeanName;
String managedBeanName = null;
try {
managedBeanName = Adapters.collapsedStringAdapterAdapter.marshal(managedBeanNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesManagedBean, "managedBeanName", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (managedBeanName != null) {
writer.writeStartElement(prefix, "managed-bean-name", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(managedBeanName);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesManagedBean, "managedBeanName");
}
// ELEMENT: managedBeanClass
final String managedBeanClassRaw = facesManagedBean.managedBeanClass;
String managedBeanClass = null;
try {
managedBeanClass = Adapters.collapsedStringAdapterAdapter.marshal(managedBeanClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesManagedBean, "managedBeanClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (managedBeanClass != null) {
writer.writeStartElement(prefix, "managed-bean-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(managedBeanClass);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesManagedBean, "managedBeanClass");
}
// ELEMENT: managedBeanScope
final String managedBeanScopeRaw = facesManagedBean.managedBeanScope;
String managedBeanScope = null;
try {
managedBeanScope = Adapters.collapsedStringAdapterAdapter.marshal(managedBeanScopeRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesManagedBean, "managedBeanScope", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (managedBeanScope != null) {
writer.writeStartElement(prefix, "managed-bean-scope", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(managedBeanScope);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesManagedBean, "managedBeanScope");
}
// ELEMENT: managedProperty
final List<FacesManagedProperty> managedProperty = facesManagedBean.managedProperty;
if (managedProperty != null) {
for (final FacesManagedProperty managedPropertyItem : managedProperty) {
if (managedPropertyItem != null) {
writer.writeStartElement(prefix, "managed-property", "http://java.sun.com/xml/ns/javaee");
writeFacesManagedProperty(writer, managedPropertyItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: mapEntries
final FacesMapEntries mapEntries = facesManagedBean.mapEntries;
if (mapEntries != null) {
writer.writeStartElement(prefix, "map-entries", "http://java.sun.com/xml/ns/javaee");
writeFacesMapEntries(writer, mapEntries, context);
writer.writeEndElement();
}
// ELEMENT: listEntries
final FacesListEntries listEntries = facesManagedBean.listEntries;
if (listEntries != null) {
writer.writeStartElement(prefix, "list-entries", "http://java.sun.com/xml/ns/javaee");
writeFacesListEntries(writer, listEntries, context);
writer.writeEndElement();
}
// ELEMENT: managedBeanExtension
final List<FacesManagedBeanExtension> managedBeanExtension = facesManagedBean.managedBeanExtension;
if (managedBeanExtension != null) {
for (final FacesManagedBeanExtension managedBeanExtensionItem : managedBeanExtension) {
if (managedBeanExtensionItem != null) {
writer.writeStartElement(prefix, "managed-bean-extension", "http://java.sun.com/xml/ns/javaee");
writeFacesManagedBeanExtension(writer, managedBeanExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(facesManagedBean, LifecycleCallback.NONE);
}
use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.
the class FacesManagedProperty$JAXB method _read.
public static final FacesManagedProperty _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FacesManagedProperty facesManagedProperty = new FacesManagedProperty();
context.beforeUnmarshal(facesManagedProperty, LifecycleCallback.NONE);
ArrayList<Text> descriptions = null;
ArrayList<Text> displayNames = null;
LocalCollection<Icon> icon = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("faces-config-managed-propertyType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FacesManagedProperty.class);
}
}
// Read attributes
for (final Attribute attribute : reader.getAttributes()) {
if (("id" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
// ATTRIBUTE: id
final String id = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
context.addXmlId(reader, id, facesManagedProperty);
facesManagedProperty.id = id;
} else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
context.unexpectedAttribute(attribute, new QName("", "id"));
}
}
// Read elements
for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
if (("description" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: descriptions
final Text descriptionsItem = readText(elementReader, context);
if (descriptions == null) {
descriptions = new ArrayList<Text>();
}
descriptions.add(descriptionsItem);
} else if (("display-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: displayNames
final Text displayNamesItem = readText(elementReader, context);
if (displayNames == null) {
displayNames = new ArrayList<Text>();
}
displayNames.add(displayNamesItem);
} else if (("icon" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: icon
final Icon iconItem = readIcon(elementReader, context);
if (icon == null) {
icon = facesManagedProperty.icon;
if (icon != null) {
icon.clear();
} else {
icon = new LocalCollection<Icon>();
}
}
icon.add(iconItem);
} else if (("property-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: propertyName
final String propertyNameRaw = elementReader.getElementAsString();
final String propertyName;
try {
propertyName = Adapters.collapsedStringAdapterAdapter.unmarshal(propertyNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesManagedProperty.propertyName = propertyName;
} else if (("property-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: propertyClass
final String propertyClassRaw = elementReader.getElementAsString();
final String propertyClass;
try {
propertyClass = Adapters.collapsedStringAdapterAdapter.unmarshal(propertyClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesManagedProperty.propertyClass = propertyClass;
} else if (("map-entries" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: mapEntries
final FacesMapEntries mapEntries = readFacesMapEntries(elementReader, context);
facesManagedProperty.mapEntries = mapEntries;
} else if (("null-value" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: nullValue
final FacesNullValue nullValue = readFacesNullValue(elementReader, context);
facesManagedProperty.nullValue = nullValue;
} else if (("value" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: value
final String valueRaw = elementReader.getElementAsString();
final String value;
try {
value = Adapters.collapsedStringAdapterAdapter.unmarshal(valueRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesManagedProperty.value = value;
} else if (("list-entries" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: listEntries
final FacesListEntries listEntries = readFacesListEntries(elementReader, context);
facesManagedProperty.listEntries = listEntries;
} else {
context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "display-name"), new QName("http://java.sun.com/xml/ns/javaee", "icon"), new QName("http://java.sun.com/xml/ns/javaee", "property-name"), new QName("http://java.sun.com/xml/ns/javaee", "property-class"), new QName("http://java.sun.com/xml/ns/javaee", "map-entries"), new QName("http://java.sun.com/xml/ns/javaee", "null-value"), new QName("http://java.sun.com/xml/ns/javaee", "value"), new QName("http://java.sun.com/xml/ns/javaee", "list-entries"));
}
}
if (descriptions != null) {
try {
facesManagedProperty.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesManagedProperty.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames != null) {
try {
facesManagedProperty.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesManagedProperty.class, "setDisplayNames", Text[].class, e);
}
}
if (icon != null) {
facesManagedProperty.icon = icon;
}
context.afterUnmarshal(facesManagedProperty, LifecycleCallback.NONE);
return facesManagedProperty;
}
Aggregations