Example #1
0
  public void characters(char[] ch, int start, int length) throws SAXException {
    // -- Do delagation if necessary
    if (unmarshaller != null) {
      unmarshaller.characters(ch, start, length);
    }

    if (sb == null) sb = new StringBuffer();
    sb.append(ch, start, length);
  } // -- characters
Example #2
0
 /**
  * Called to signal an end of unmarshalling. This method should be overridden to perform any
  * necessary clean up by an unmarshaller
  */
 public void finish() {
   if (sb != null) {
     _appInfo.setContent(sb.toString());
     sb = null;
   }
 } // -- finish