198199200201202203204205
public void addAttributeValueOpaque(OpaqueValue part) throws WBSAXException { try { enc.write(part.getString()); } catch (IOException e) { throw new WBSAXException(e); } }
260261262263264265266267
public void addAttributeValue(StringReference part) throws WBSAXException { try { enc.write( part.resolveString().getString() ); } catch (IOException e) { throw new WBSAXException(e); } }
276277278279280281282283
public void addAttributeValue(WBSAXString part) throws WBSAXException { try { enc.write( part.getString() ); } catch (IOException e) { throw new WBSAXException(e); } }
294295296297298299300301
try { out.write( "&#" ); enc.write( String.valueOf(entity.getInteger()) ); out.write( ';' ); } catch (IOException e) { throw new WBSAXException(e); } }
302303304305306307308309
public void addContentValueOpaque(OpaqueValue part) throws WBSAXException { try { enc.write(part.getString()); } catch (IOException e) { throw new WBSAXException(e); } }
365366367368369370371372
public void addContentValue(StringReference part) throws WBSAXException { try { enc.write( part.resolveString().getString() ); } catch (IOException e) { throw new WBSAXException(e); } }
381382383384385386387388
public void addContentValue(WBSAXString part) throws WBSAXException { try { enc.write( part.getString() ); } catch (IOException e) { throw new WBSAXException(e); } }
403404405406407408409410
closeAttribute(); out.write("/>"); } tagFrameStack.pop(); } catch (IOException e) { throw new WBSAXException(e); } }
420421422423424425426427
public void startContent() throws WBSAXException { try { closeAttribute(); out.write( '>' ); } catch (IOException e) { throw new WBSAXException(e); } }
474475476477478479480481
tagFrameStack.push(new TagFrame(name, content)); if (!attributes && !content) { endElement(); } } catch (IOException e) { throw new WBSAXException(e); } }