Search in sources :

Example 56 with Icon

use of org.apache.openejb.jee.Icon 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);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 57 with Icon

use of org.apache.openejb.jee.Icon 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;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) ArrayList(java.util.ArrayList) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 58 with Icon

use of org.apache.openejb.jee.Icon in project tomee by apache.

the class Function$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final Function function, RuntimeContext context) throws Exception {
    if (function == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (Function.class != function.getClass()) {
        context.unexpectedSubclass(writer, function, Function.class);
        return;
    }
    context.beforeMarshal(function, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = function.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(function, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = function.getDescriptions();
    } catch (final Exception e) {
        context.getterError(function, "descriptions", Function.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(function, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = function.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(function, "displayNames", Function.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(function, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = function.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(function, "icon");
            }
        }
    }
    // ELEMENT: name
    final String nameRaw = function.name;
    String name = null;
    try {
        name = Adapters.collapsedStringAdapterAdapter.marshal(nameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(function, "name", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (name != null) {
        writer.writeStartElement(prefix, "name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(name);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(function, "name");
    }
    // ELEMENT: functionClass
    final String functionClassRaw = function.functionClass;
    String functionClass = null;
    try {
        functionClass = Adapters.collapsedStringAdapterAdapter.marshal(functionClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(function, "functionClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (functionClass != null) {
        writer.writeStartElement(prefix, "function-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(functionClass);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(function, "functionClass");
    }
    // ELEMENT: functionSignature
    final String functionSignatureRaw = function.functionSignature;
    String functionSignature = null;
    try {
        functionSignature = Adapters.collapsedStringAdapterAdapter.marshal(functionSignatureRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(function, "functionSignature", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (functionSignature != null) {
        writer.writeStartElement(prefix, "function-signature", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(functionSignature);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(function, "functionSignature");
    }
    // ELEMENT: example
    final String exampleRaw = function.example;
    String example = null;
    try {
        example = Adapters.collapsedStringAdapterAdapter.marshal(exampleRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(function, "example", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (example != null) {
        writer.writeStartElement(prefix, "example", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(example);
        writer.writeEndElement();
    }
    // ELEMENT: functionExtension
    final List<TldExtension> functionExtension = function.functionExtension;
    if (functionExtension != null) {
        for (final TldExtension functionExtensionItem : functionExtension) {
            if (functionExtensionItem != null) {
                writer.writeStartElement(prefix, "function-extension", "http://java.sun.com/xml/ns/javaee");
                writeTldExtension(writer, functionExtensionItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(function, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 59 with Icon

use of org.apache.openejb.jee.Icon in project tomee by apache.

the class Function$JAXB method _read.

public static final Function _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final Function function = new Function();
    context.beforeUnmarshal(function, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<TldExtension> functionExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("functionType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, Function.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, function);
            function.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 = function.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: name
            final String nameRaw = elementReader.getElementAsString();
            final String name;
            try {
                name = Adapters.collapsedStringAdapterAdapter.unmarshal(nameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            function.name = name;
        } else if (("function-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: functionClass
            final String functionClassRaw = elementReader.getElementAsString();
            final String functionClass;
            try {
                functionClass = Adapters.collapsedStringAdapterAdapter.unmarshal(functionClassRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            function.functionClass = functionClass;
        } else if (("function-signature" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: functionSignature
            final String functionSignatureRaw = elementReader.getElementAsString();
            final String functionSignature;
            try {
                functionSignature = Adapters.collapsedStringAdapterAdapter.unmarshal(functionSignatureRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            function.functionSignature = functionSignature;
        } else if (("example" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: example
            final String exampleRaw = elementReader.getElementAsString();
            final String example;
            try {
                example = Adapters.collapsedStringAdapterAdapter.unmarshal(exampleRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            function.example = example;
        } else if (("function-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: functionExtension
            final TldExtension functionExtensionItem = readTldExtension(elementReader, context);
            if (functionExtension == null) {
                functionExtension = function.functionExtension;
                if (functionExtension != null) {
                    functionExtension.clear();
                } else {
                    functionExtension = new ArrayList<TldExtension>();
                }
            }
            functionExtension.add(functionExtensionItem);
        } 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", "name"), new QName("http://java.sun.com/xml/ns/javaee", "function-class"), new QName("http://java.sun.com/xml/ns/javaee", "function-signature"), new QName("http://java.sun.com/xml/ns/javaee", "example"), new QName("http://java.sun.com/xml/ns/javaee", "function-extension"));
        }
    }
    if (descriptions != null) {
        try {
            function.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, Function.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            function.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, Function.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        function.icon = icon;
    }
    if (functionExtension != null) {
        function.functionExtension = functionExtension;
    }
    context.afterUnmarshal(function, LifecycleCallback.NONE);
    return function;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) ArrayList(java.util.ArrayList) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 60 with Icon

use of org.apache.openejb.jee.Icon in project tomee by apache.

the class FacesNavigationCase$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final FacesNavigationCase facesNavigationCase, RuntimeContext context) throws Exception {
    if (facesNavigationCase == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (FacesNavigationCase.class != facesNavigationCase.getClass()) {
        context.unexpectedSubclass(writer, facesNavigationCase, FacesNavigationCase.class);
        return;
    }
    context.beforeMarshal(facesNavigationCase, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = facesNavigationCase.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(facesNavigationCase, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = facesNavigationCase.getDescriptions();
    } catch (final Exception e) {
        context.getterError(facesNavigationCase, "descriptions", FacesNavigationCase.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(facesNavigationCase, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = facesNavigationCase.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(facesNavigationCase, "displayNames", FacesNavigationCase.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(facesNavigationCase, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = facesNavigationCase.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(facesNavigationCase, "icon");
            }
        }
    }
    // ELEMENT: fromAction
    final FacesFromAction fromAction = facesNavigationCase.fromAction;
    if (fromAction != null) {
        writer.writeStartElement(prefix, "from-action", "http://java.sun.com/xml/ns/javaee");
        writeFacesFromAction(writer, fromAction, context);
        writer.writeEndElement();
    }
    // ELEMENT: fromOutcome
    final String fromOutcomeRaw = facesNavigationCase.fromOutcome;
    String fromOutcome = null;
    try {
        fromOutcome = Adapters.collapsedStringAdapterAdapter.marshal(fromOutcomeRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesNavigationCase, "fromOutcome", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (fromOutcome != null) {
        writer.writeStartElement(prefix, "from-outcome", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(fromOutcome);
        writer.writeEndElement();
    }
    // ELEMENT: _if
    final String _ifRaw = facesNavigationCase._if;
    String _if = null;
    try {
        _if = Adapters.collapsedStringAdapterAdapter.marshal(_ifRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesNavigationCase, "_if", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (_if != null) {
        writer.writeStartElement(prefix, "if", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(_if);
        writer.writeEndElement();
    }
    // ELEMENT: toViewId
    final String toViewIdRaw = facesNavigationCase.toViewId;
    String toViewId = null;
    try {
        toViewId = Adapters.collapsedStringAdapterAdapter.marshal(toViewIdRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesNavigationCase, "toViewId", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (toViewId != null) {
        writer.writeStartElement(prefix, "to-view-id", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toViewId);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(facesNavigationCase, "toViewId");
    }
    // ELEMENT: redirect
    final FacesRedirect redirect = facesNavigationCase.redirect;
    if (redirect != null) {
        writer.writeStartElement(prefix, "redirect", "http://java.sun.com/xml/ns/javaee");
        writeFacesRedirect(writer, redirect, context);
        writer.writeEndElement();
    }
    context.afterMarshal(facesNavigationCase, LifecycleCallback.NONE);
}
Also used : FacesRedirect$JAXB.writeFacesRedirect(org.apache.openejb.jee.FacesRedirect$JAXB.writeFacesRedirect) FacesRedirect$JAXB.readFacesRedirect(org.apache.openejb.jee.FacesRedirect$JAXB.readFacesRedirect) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) FacesFromAction$JAXB.readFacesFromAction(org.apache.openejb.jee.FacesFromAction$JAXB.readFacesFromAction) FacesFromAction$JAXB.writeFacesFromAction(org.apache.openejb.jee.FacesFromAction$JAXB.writeFacesFromAction) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Aggregations

Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)74 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)74 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)74 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)70 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)70 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)70 ArrayList (java.util.ArrayList)40 QName (javax.xml.namespace.QName)40 Attribute (org.metatype.sxc.util.Attribute)37 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)37 DataSource$JAXB.readDataSource (org.apache.openejb.jee.DataSource$JAXB.readDataSource)12 DataSource$JAXB.writeDataSource (org.apache.openejb.jee.DataSource$JAXB.writeDataSource)12 EjbLocalRef$JAXB.readEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.readEjbLocalRef)12 EjbLocalRef$JAXB.writeEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.writeEjbLocalRef)12 EjbRef$JAXB.readEjbRef (org.apache.openejb.jee.EjbRef$JAXB.readEjbRef)12 EjbRef$JAXB.writeEjbRef (org.apache.openejb.jee.EjbRef$JAXB.writeEjbRef)12 EnvEntry$JAXB.readEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.readEnvEntry)12 EnvEntry$JAXB.writeEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.writeEnvEntry)12 MessageDestinationRef$JAXB.readMessageDestinationRef (org.apache.openejb.jee.MessageDestinationRef$JAXB.readMessageDestinationRef)12 MessageDestinationRef$JAXB.writeMessageDestinationRef (org.apache.openejb.jee.MessageDestinationRef$JAXB.writeMessageDestinationRef)12