use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.
the class FacesConverter$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesConverter facesConverter, RuntimeContext context) throws Exception {
if (facesConverter == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesConverter.class != facesConverter.getClass()) {
context.unexpectedSubclass(writer, facesConverter, FacesConverter.class);
return;
}
context.beforeMarshal(facesConverter, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = facesConverter.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesConverter, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesConverter.getDescriptions();
} catch (final Exception e) {
context.getterError(facesConverter, "descriptions", FacesConverter.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(facesConverter, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesConverter.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesConverter, "displayNames", FacesConverter.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(facesConverter, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesConverter.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(facesConverter, "icon");
}
}
}
// ELEMENT: converterId
final String converterIdRaw = facesConverter.converterId;
String converterId = null;
try {
converterId = Adapters.collapsedStringAdapterAdapter.marshal(converterIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesConverter, "converterId", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (converterId != null) {
writer.writeStartElement(prefix, "converter-id", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(converterId);
writer.writeEndElement();
}
// ELEMENT: converterForClass
final String converterForClassRaw = facesConverter.converterForClass;
String converterForClass = null;
try {
converterForClass = Adapters.collapsedStringAdapterAdapter.marshal(converterForClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesConverter, "converterForClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (converterForClass != null) {
writer.writeStartElement(prefix, "converter-for-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(converterForClass);
writer.writeEndElement();
}
// ELEMENT: converterClass
final String converterClassRaw = facesConverter.converterClass;
String converterClass = null;
try {
converterClass = Adapters.collapsedStringAdapterAdapter.marshal(converterClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesConverter, "converterClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (converterClass != null) {
writer.writeStartElement(prefix, "converter-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(converterClass);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesConverter, "converterClass");
}
// ELEMENT: attribute
final List<FacesAttribute> attribute = facesConverter.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 = facesConverter.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: converterExtension
final List<FacesConverterExtension> converterExtension = facesConverter.converterExtension;
if (converterExtension != null) {
for (final FacesConverterExtension converterExtensionItem : converterExtension) {
if (converterExtensionItem != null) {
writer.writeStartElement(prefix, "converter-extension", "http://java.sun.com/xml/ns/javaee");
writeFacesConverterExtension(writer, converterExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(facesConverter, LifecycleCallback.NONE);
}
use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.
the class FacesConverter$JAXB method _read.
public static final FacesConverter _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FacesConverter facesConverter = new FacesConverter();
context.beforeUnmarshal(facesConverter, LifecycleCallback.NONE);
ArrayList<Text> descriptions = null;
ArrayList<Text> displayNames = null;
LocalCollection<Icon> icon = null;
List<FacesAttribute> attribute1 = null;
List<FacesProperty> property = null;
List<FacesConverterExtension> converterExtension = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("faces-config-converterType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FacesConverter.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, facesConverter);
facesConverter.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 = facesConverter.icon;
if (icon != null) {
icon.clear();
} else {
icon = new LocalCollection<Icon>();
}
}
icon.add(iconItem);
} else if (("converter-id" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: converterId
final String converterIdRaw = elementReader.getElementAsString();
final String converterId;
try {
converterId = Adapters.collapsedStringAdapterAdapter.unmarshal(converterIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesConverter.converterId = converterId;
} else if (("converter-for-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: converterForClass
final String converterForClassRaw = elementReader.getElementAsString();
final String converterForClass;
try {
converterForClass = Adapters.collapsedStringAdapterAdapter.unmarshal(converterForClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesConverter.converterForClass = converterForClass;
} else if (("converter-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: converterClass
final String converterClassRaw = elementReader.getElementAsString();
final String converterClass;
try {
converterClass = Adapters.collapsedStringAdapterAdapter.unmarshal(converterClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesConverter.converterClass = converterClass;
} 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 = facesConverter.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 = facesConverter.property;
if (property != null) {
property.clear();
} else {
property = new ArrayList<FacesProperty>();
}
}
property.add(propertyItem);
} else if (("converter-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: converterExtension
final FacesConverterExtension converterExtensionItem = readFacesConverterExtension(elementReader, context);
if (converterExtension == null) {
converterExtension = facesConverter.converterExtension;
if (converterExtension != null) {
converterExtension.clear();
} else {
converterExtension = new ArrayList<FacesConverterExtension>();
}
}
converterExtension.add(converterExtensionItem);
} 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", "converter-id"), new QName("http://java.sun.com/xml/ns/javaee", "converter-for-class"), new QName("http://java.sun.com/xml/ns/javaee", "converter-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", "converter-extension"));
}
}
if (descriptions != null) {
try {
facesConverter.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesConverter.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames != null) {
try {
facesConverter.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesConverter.class, "setDisplayNames", Text[].class, e);
}
}
if (icon != null) {
facesConverter.icon = icon;
}
if (attribute1 != null) {
facesConverter.attribute = attribute1;
}
if (property != null) {
facesConverter.property = property;
}
if (converterExtension != null) {
facesConverter.converterExtension = converterExtension;
}
context.afterUnmarshal(facesConverter, LifecycleCallback.NONE);
return facesConverter;
}
use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.
the class FacesApplicationResourceBundle$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesApplicationResourceBundle facesApplicationResourceBundle, RuntimeContext context) throws Exception {
if (facesApplicationResourceBundle == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesApplicationResourceBundle.class != facesApplicationResourceBundle.getClass()) {
context.unexpectedSubclass(writer, facesApplicationResourceBundle, FacesApplicationResourceBundle.class);
return;
}
context.beforeMarshal(facesApplicationResourceBundle, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = facesApplicationResourceBundle.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesApplicationResourceBundle, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesApplicationResourceBundle.getDescriptions();
} catch (final Exception e) {
context.getterError(facesApplicationResourceBundle, "descriptions", FacesApplicationResourceBundle.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(facesApplicationResourceBundle, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesApplicationResourceBundle.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesApplicationResourceBundle, "displayNames", FacesApplicationResourceBundle.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(facesApplicationResourceBundle, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesApplicationResourceBundle.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(facesApplicationResourceBundle, "icon");
}
}
}
// ELEMENT: baseName
final String baseNameRaw = facesApplicationResourceBundle.baseName;
String baseName = null;
try {
baseName = Adapters.collapsedStringAdapterAdapter.marshal(baseNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesApplicationResourceBundle, "baseName", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (baseName != null) {
writer.writeStartElement(prefix, "base-name", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(baseName);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesApplicationResourceBundle, "baseName");
}
// ELEMENT: var
final String varRaw = facesApplicationResourceBundle.var;
String var = null;
try {
var = Adapters.collapsedStringAdapterAdapter.marshal(varRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesApplicationResourceBundle, "var", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (var != null) {
writer.writeStartElement(prefix, "var", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(var);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesApplicationResourceBundle, "var");
}
context.afterMarshal(facesApplicationResourceBundle, LifecycleCallback.NONE);
}
use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.
the class FacesApplicationResourceBundle$JAXB method _read.
public static final FacesApplicationResourceBundle _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FacesApplicationResourceBundle facesApplicationResourceBundle = new FacesApplicationResourceBundle();
context.beforeUnmarshal(facesApplicationResourceBundle, 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-application-resource-bundleType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FacesApplicationResourceBundle.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, facesApplicationResourceBundle);
facesApplicationResourceBundle.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 = facesApplicationResourceBundle.icon;
if (icon != null) {
icon.clear();
} else {
icon = new LocalCollection<Icon>();
}
}
icon.add(iconItem);
} else if (("base-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: baseName
final String baseNameRaw = elementReader.getElementAsString();
final String baseName;
try {
baseName = Adapters.collapsedStringAdapterAdapter.unmarshal(baseNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesApplicationResourceBundle.baseName = baseName;
} else if (("var" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: var
final String varRaw = elementReader.getElementAsString();
final String var;
try {
var = Adapters.collapsedStringAdapterAdapter.unmarshal(varRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesApplicationResourceBundle.var = var;
} 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", "base-name"), new QName("http://java.sun.com/xml/ns/javaee", "var"));
}
}
if (descriptions != null) {
try {
facesApplicationResourceBundle.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesApplicationResourceBundle.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames != null) {
try {
facesApplicationResourceBundle.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesApplicationResourceBundle.class, "setDisplayNames", Text[].class, e);
}
}
if (icon != null) {
facesApplicationResourceBundle.icon = icon;
}
context.afterUnmarshal(facesApplicationResourceBundle, LifecycleCallback.NONE);
return facesApplicationResourceBundle;
}
use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.
the class FacesRenderKit$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesRenderKit facesRenderKit, RuntimeContext context) throws Exception {
if (facesRenderKit == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesRenderKit.class != facesRenderKit.getClass()) {
context.unexpectedSubclass(writer, facesRenderKit, FacesRenderKit.class);
return;
}
context.beforeMarshal(facesRenderKit, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = facesRenderKit.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesRenderKit, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesRenderKit.getDescriptions();
} catch (final Exception e) {
context.getterError(facesRenderKit, "descriptions", FacesRenderKit.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(facesRenderKit, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesRenderKit.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesRenderKit, "displayNames", FacesRenderKit.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(facesRenderKit, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesRenderKit.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(facesRenderKit, "icon");
}
}
}
// ELEMENT: renderKitId
final String renderKitIdRaw = facesRenderKit.renderKitId;
String renderKitId = null;
try {
renderKitId = Adapters.collapsedStringAdapterAdapter.marshal(renderKitIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesRenderKit, "renderKitId", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (renderKitId != null) {
writer.writeStartElement(prefix, "render-kit-id", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(renderKitId);
writer.writeEndElement();
}
// ELEMENT: renderKitClass
final String renderKitClassRaw = facesRenderKit.renderKitClass;
String renderKitClass = null;
try {
renderKitClass = Adapters.collapsedStringAdapterAdapter.marshal(renderKitClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesRenderKit, "renderKitClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (renderKitClass != null) {
writer.writeStartElement(prefix, "render-kit-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(renderKitClass);
writer.writeEndElement();
}
// ELEMENT: renderer
final List<FacesRenderer> renderer = facesRenderKit.renderer;
if (renderer != null) {
for (final FacesRenderer rendererItem : renderer) {
writer.writeStartElement(prefix, "renderer", "http://java.sun.com/xml/ns/javaee");
if (rendererItem != null) {
writeFacesRenderer(writer, rendererItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: clientBehaviorRenderer
final List<FacesClientBehaviorRenderer> clientBehaviorRenderer = facesRenderKit.clientBehaviorRenderer;
if (clientBehaviorRenderer != null) {
for (final FacesClientBehaviorRenderer clientBehaviorRendererItem : clientBehaviorRenderer) {
if (clientBehaviorRendererItem != null) {
writer.writeStartElement(prefix, "client-behavior-renderer", "http://java.sun.com/xml/ns/javaee");
writeFacesClientBehaviorRenderer(writer, clientBehaviorRendererItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: renderKitExtension
final List<FacesRenderKitExtension> renderKitExtension = facesRenderKit.renderKitExtension;
if (renderKitExtension != null) {
for (final FacesRenderKitExtension renderKitExtensionItem : renderKitExtension) {
if (renderKitExtensionItem != null) {
writer.writeStartElement(prefix, "render-kit-extension", "http://java.sun.com/xml/ns/javaee");
writeFacesRenderKitExtension(writer, renderKitExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(facesRenderKit, LifecycleCallback.NONE);
}
Aggregations