use of org.apache.openejb.jee.TldExtension$JAXB.readTldExtension 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;
}
use of org.apache.openejb.jee.TldExtension$JAXB.readTldExtension in project tomee by apache.
the class Tag$JAXB method _read.
public static final Tag _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final Tag tag = new Tag();
context.beforeUnmarshal(tag, LifecycleCallback.NONE);
ArrayList<Text> descriptions = null;
ArrayList<Text> displayNames = null;
LocalCollection<Icon> icon = null;
List<Variable> variable = null;
List<TldAttribute> attribute1 = null;
List<TldExtension> tagExtension = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("tagType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, Tag.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, tag);
tag.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 = tag.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;
}
tag.name = name;
} else if (("tag-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: tagClass
final String tagClassRaw = elementReader.getElementAsString();
final String tagClass;
try {
tagClass = Adapters.collapsedStringAdapterAdapter.unmarshal(tagClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
tag.tagClass = tagClass;
} else if (("tei-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: teiClass
final String teiClassRaw = elementReader.getElementAsString();
final String teiClass;
try {
teiClass = Adapters.collapsedStringAdapterAdapter.unmarshal(teiClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
tag.teiClass = teiClass;
} else if (("body-content" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: bodyContent
final BodyContent bodyContent = parseBodyContent(elementReader, context, elementReader.getElementAsString());
if (bodyContent != null) {
tag.bodyContent = bodyContent;
}
} else if (("variable" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: variable
final Variable variableItem = readVariable(elementReader, context);
if (variable == null) {
variable = tag.variable;
if (variable != null) {
variable.clear();
} else {
variable = new ArrayList<Variable>();
}
}
variable.add(variableItem);
} else if (("attribute" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: attribute
final TldAttribute attributeItem = readTldAttribute(elementReader, context);
if (attribute1 == null) {
attribute1 = tag.attribute;
if (attribute1 != null) {
attribute1.clear();
} else {
attribute1 = new ArrayList<TldAttribute>();
}
}
attribute1.add(attributeItem);
} else if (("dynamic-attributes" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: dynamicAttributes
final String dynamicAttributesRaw = elementReader.getElementAsString();
final String dynamicAttributes;
try {
dynamicAttributes = Adapters.collapsedStringAdapterAdapter.unmarshal(dynamicAttributesRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
tag.dynamicAttributes = dynamicAttributes;
} 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;
}
tag.example = example;
} else if (("tag-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: tagExtension
final TldExtension tagExtensionItem = readTldExtension(elementReader, context);
if (tagExtension == null) {
tagExtension = tag.tagExtension;
if (tagExtension != null) {
tagExtension.clear();
} else {
tagExtension = new ArrayList<TldExtension>();
}
}
tagExtension.add(tagExtensionItem);
} 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", "tag-class"), new QName("http://java.sun.com/xml/ns/javaee", "tei-class"), new QName("http://java.sun.com/xml/ns/javaee", "body-content"), new QName("http://java.sun.com/xml/ns/javaee", "variable"), new QName("http://java.sun.com/xml/ns/javaee", "attribute"), new QName("http://java.sun.com/xml/ns/javaee", "dynamic-attributes"), new QName("http://java.sun.com/xml/ns/javaee", "example"), new QName("http://java.sun.com/xml/ns/javaee", "tag-extension"));
}
}
if (descriptions != null) {
try {
tag.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
} catch (final Exception e) {
context.setterError(reader, Tag.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames != null) {
try {
tag.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
} catch (final Exception e) {
context.setterError(reader, Tag.class, "setDisplayNames", Text[].class, e);
}
}
if (icon != null) {
tag.icon = icon;
}
if (variable != null) {
tag.variable = variable;
}
if (attribute1 != null) {
tag.attribute = attribute1;
}
if (tagExtension != null) {
tag.tagExtension = tagExtension;
}
context.afterUnmarshal(tag, LifecycleCallback.NONE);
return tag;
}
use of org.apache.openejb.jee.TldExtension$JAXB.readTldExtension in project tomee by apache.
the class TagFile$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final TagFile tagFile, RuntimeContext context) throws Exception {
if (tagFile == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (TagFile.class != tagFile.getClass()) {
context.unexpectedSubclass(writer, tagFile, TagFile.class);
return;
}
context.beforeMarshal(tagFile, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = tagFile.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(tagFile, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = tagFile.getDescriptions();
} catch (final Exception e) {
context.getterError(tagFile, "descriptions", TagFile.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(tagFile, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = tagFile.getDisplayNames();
} catch (final Exception e) {
context.getterError(tagFile, "displayNames", TagFile.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(tagFile, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = tagFile.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(tagFile, "icon");
}
}
}
// ELEMENT: name
final String nameRaw = tagFile.name;
String name = null;
try {
name = Adapters.collapsedStringAdapterAdapter.marshal(nameRaw);
} catch (final Exception e) {
context.xmlAdapterError(tagFile, "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(tagFile, "name");
}
// ELEMENT: path
final String pathRaw = tagFile.path;
String path = null;
try {
path = Adapters.collapsedStringAdapterAdapter.marshal(pathRaw);
} catch (final Exception e) {
context.xmlAdapterError(tagFile, "path", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (path != null) {
writer.writeStartElement(prefix, "path", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(path);
writer.writeEndElement();
} else {
context.unexpectedNullValue(tagFile, "path");
}
// ELEMENT: example
final String exampleRaw = tagFile.example;
String example = null;
try {
example = Adapters.collapsedStringAdapterAdapter.marshal(exampleRaw);
} catch (final Exception e) {
context.xmlAdapterError(tagFile, "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: tagExtension
final List<TldExtension> tagExtension = tagFile.tagExtension;
if (tagExtension != null) {
for (final TldExtension tagExtensionItem : tagExtension) {
if (tagExtensionItem != null) {
writer.writeStartElement(prefix, "tag-extension", "http://java.sun.com/xml/ns/javaee");
writeTldExtension(writer, tagExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(tagFile, LifecycleCallback.NONE);
}
Aggregations