Ejemplo n.º 1
0
 private void writeName(int prefix, String localName) throws IOException {
   writePrefix(prefix);
   textBuffer.set(localName);
   textBuffer.write(this);
 }
Ejemplo n.º 2
0
 private void writeName(Name name) throws IOException {
   writePrefix(nsUriIndex2prefixIndex[name.nsUriIndex]);
   localNames[name.localNameIndex].write(this);
 }