664665666667668669670671672673674
} else { out.write(stringTable.length().getBytes()); out.write(stringTable.getContent()); } } catch (IOException e) { throw new WBSAXException( exceptionLocalizer.format( "wbsax-string-table-write-error"), e); } }
142143144145146147148149
throw new UnsupportedOperationException( "Document Extension (" + String.valueOf(code.intValue()) + ") not supported"); } } catch (IOException e) { throw new WBSAXException(e); } }
175176177178179180181182
204205206207208209210211
out.write("\" \""); output(publicId.getDtd()); out.write("\">"); } } catch (IOException e) { throw new WBSAXException(e); } }
231232233234235236237238
strings); out.write( "<!DOCTYPE wml PUBLIC \"" ); output( publicId.resolveString().getString() ); out.write( "\" >" ); } catch (IOException e) { throw new WBSAXException(e); } }
281282283284285286287288
} else { enc.write(chr); } } } catch (IOException e) { throw new WBSAXException(e); } }
135136137138139140141142
if (prefix != null) { enc.write( prefix ); } inAttribute = true; } catch (IOException e) { throw new WBSAXException(e); } }
155156157158159160161162
out.write( ' ' ); enc.write( name.resolveString().getString() ); out.write( "=\""); inAttribute = true; } catch (IOException e) { throw new WBSAXException(e); } }
171172173174175176177178
public void addAttributeValue(AttributeValueCode valuePart) throws WBSAXException { try { enc.write( valuePart.getValue() ); } catch (IOException e) { throw new WBSAXException(e); } }
189190191192193194195196
try { out.write( "&#" ); enc.write( String.valueOf(entity.getInteger()) ); out.write( ';' ); } catch (IOException e) { throw new WBSAXException(e); } }