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); } }
110111112113114115116117
public void endDocument() throws TransletException { try { _domBuilder.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }
125126127128129130131132
try { maybeEmitStartElement(); _domBuilder.characters(characters, offset, length); } catch (SAXException e) { throw new TransletException(e); } }
136137138139140141142143
maybeEmitStartElement(); _openElementName = elementName; _attributes.clear(); } catch (SAXException e) { throw new TransletException(e); } }
146147148149150151152153
try { maybeEmitStartElement(); _domBuilder.endElement(null, null, elementName); } catch (SAXException e) { throw new TransletException(e); } }