/** * Creates a new AppInfoUnmarshaller * * @param atts the AttributeList */ public AppInfoUnmarshaller(AttributeList atts) throws SAXException { super(); _appInfo = new AppInfo(); // -- handle attributes String attValue = null; _appInfo.setSource(atts.getValue(SchemaNames.BASE_ATTR)); } // -- AppInfoUnmarshaller
/** * 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