122123124125126127128129
writeMayProvideIntentsAttribute(extnType, writer); writer.writeEndElement(); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } }
949596979899100101
writer.writeAttribute(CLASS, javaImplementation.getName()); } writer.writeEndElement(); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } }
167168169170171172173174
} writeEndDocument(writer); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } }
133134135136137138139140
} writer.writeEndElement(); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } }
215216217218219220221222
84858687888990919293
StAXArtifactProcessor processor = processors.getProcessor(model.getClass()); if (processor != null) { try { processor.write(model, outputSource); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } } } }
162163164165166167168169
XMLStreamWriter writer = outputFactory.createXMLStreamWriter(os); write(model, writer); writer.flush(); writer.close(); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } }
99100101102103104105106
outputSource.writeAttribute(LOCATION, xqueryImplementation.getLocation()); } outputSource.writeEndElement(); } catch (XMLStreamException e) { throw new ContributionWriteException(e); } }
629630631632633634635636
312313314315316317318319