5152535455565758
+ " " + CopyPasteConstants.AttributeLabelDatabaseName + "=\"" + database.name() + "\" " + CopyPasteConstants.AttributeLabelVersion + "=\"" + version + "\">"); } catch (java.io.IOException ioException) { throw new WikiFatalException(ioException); } }
6162636465666768
public void endDatabase(Database database) throws org.dbwiki.exception.WikiException { try { this.writeln("</" + CopyPasteConstants.ElementLabelDatabase + ">"); } catch (java.io.IOException ioException) { throw new WikiFatalException(ioException); } }
6970717273747576
public void startGroupNode(DatabaseGroupNode node) throws org.dbwiki.exception.WikiException { try { this.writeln(this.openGroupNode(node)); } catch (java.io.IOException ioException) { throw new WikiFatalException(ioException); } }
7879808182838485
public void endGroupNode(DatabaseGroupNode node, boolean isLast) throws org.dbwiki.exception.WikiException { try { this.writeln(this.closeNode()); } catch (java.io.IOException ioException) { throw new WikiFatalException(ioException); } }
8889909192939495
try { this.writeln(this.openAttributeNode(node)); this.writeTextNode(value); this.writeln(this.closeNode()); } catch (java.io.IOException ioException) { throw new WikiFatalException(ioException); } }
9899100101102103104105
try { this.write(this.openTextNode(node)); this.write(org.dbwiki.lib.XML.maskText(node.getValue())); this.writeln(this.closeNode()); } catch (java.io.IOException ioException) { throw new WikiFatalException(ioException); } }
6768697071727374
/* * Public Methods */ public void endDocument() throws org.dbwiki.exception.WikiException { if (_exception != null) { throw new WikiFatalException(_exception); } }
7374757677787980818283
} } public void endElement(String label) throws org.dbwiki.exception.WikiException { if (_exception != null) { throw new WikiFatalException(_exception); } if (_handler != null) { _handler.endElement(); if (_readPath.equals(_schemaNodeRootPath)) {
110111112113114115116117118119120
_readPath = ""; } public void startElement(String label) throws org.dbwiki.exception.WikiException { if (_exception != null) { throw new WikiFatalException(_exception); } _readPath = _readPath + "/" + label; if (_handler != null) {
136137138139140141142143144145146
} } public void text(char[] value) throws org.dbwiki.exception.WikiException { if (_exception != null) { throw new WikiFatalException(_exception); } if (_handler != null) { _handler.text(new String(value)); }