10041005100610071008100910101011
// Pass the processing instruction to the SAX handler _saxHandler.processingInstruction(target, data); } catch (SAXException e) { throw new TransletException(e); } }
10831084108510861087108810891090
_nodeStack.pop(); popNamespace((String)_prefixStack.pop()); } } catch (SAXException e) { throw new TransletException(e); } }
11121113111411151116111711181119
BasisLibrary.runTimeError(BasisLibrary.STRAY_NAMESPACE_ERR, prefix, uri); } } catch (SAXException e) { throw new TransletException(e); } }
93949596979899100
// Close output document _saxHandler.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }
122123124125126127128129
_elementName = elementName; _attributes.clear(); _startTagOpen = true; } catch (SAXException e) { throw new TransletException(e); } }
138139140141142143144145146
closeStartTag(); } _saxHandler.endElement(EMPTYSTRING, elementName, elementName); } catch (SAXException e) { throw new TransletException(e); } }
174175176177178179180181
// Close any open start tag if (_startTagOpen) closeStartTag(); _saxHandler.characters(ch, off, len); } catch (SAXException e) { throw new TransletException(e); } }
191192193194195196197198
// Now is time to send the startElement event _saxHandler.startElement(EMPTYSTRING, _elementName, _elementName, _attributes); } catch (SAXException e) { throw new TransletException(e); } }
152153154155156157158159160161162
try { Object candObj = nsrFactory.loadTranslet(colFactClassname); _collatorFactory = (CollatorFactory)candObj; } catch (ClassNotFoundException e) { throw new TransletException(e); } } else { _collatorFactory = new CollatorFactoryBase(); }
101102103104105106107108
public void startDocument() throws TransletException { try { _domBuilder.startDocument(); } catch (SAXException e) { throw new TransletException(e); } }