public void startElement(String uri, String localName, String qName, Attributes attrs)
      throws SAXException {
    try {
      // Common XML Attributes
      String attrId = null;
      // Primary Key Attributes for Constant Enum support
      // ISOCurrency Attributes
      String attrISOCode = null;
      String attrName = null;
      String attrUnitSymbol = null;
      String attrFracSymbol = null;
      String attrPrecis = null;
      // ISOCurrency References
      // Attribute Extraction
      String attrLocalName;
      int numAttrs;
      int idxAttr;
      final String S_ProcName = "startElement";
      final String S_LocalName = "LocalName";

      assert qName.equals("ISOCurrency");

      CFSecuritySaxLoader saxLoader = (CFSecuritySaxLoader) getParser();
      if (saxLoader == null) {
        throw CFLib.getDefaultExceptionFactory()
            .newNullArgumentException(getClass(), S_ProcName, 0, "getParser()");
      }

      ICFSecuritySchemaObj schemaObj = saxLoader.getSchemaObj();
      if (schemaObj == null) {
        throw CFLib.getDefaultExceptionFactory()
            .newNullArgumentException(getClass(), S_ProcName, 0, "getParser().getSchemaObj()");
      }

      // Instantiate an edit buffer for the parsed information
      ICFSecurityISOCurrencyEditObj editBuff =
          (ICFSecurityISOCurrencyEditObj)
              schemaObj.getISOCurrencyTableObj().newInstance().beginEdit();

      // Extract Attributes
      numAttrs = attrs.getLength();
      for (idxAttr = 0; idxAttr < numAttrs; idxAttr++) {
        attrLocalName = attrs.getLocalName(idxAttr);
        if (attrLocalName.equals("Id")) {
          if (attrId != null) {
            throw CFLib.getDefaultExceptionFactory()
                .newUniqueIndexViolationException(
                    getClass(), S_ProcName, S_LocalName, attrLocalName);
          }
          attrId = attrs.getValue(idxAttr);
        } else if (attrLocalName.equals("ISOCode")) {
          if (attrISOCode != null) {
            throw CFLib.getDefaultExceptionFactory()
                .newUniqueIndexViolationException(
                    getClass(), S_ProcName, S_LocalName, attrLocalName);
          }
          attrISOCode = attrs.getValue(idxAttr);
        } else if (attrLocalName.equals("Name")) {
          if (attrName != null) {
            throw CFLib.getDefaultExceptionFactory()
                .newUniqueIndexViolationException(
                    getClass(), S_ProcName, S_LocalName, attrLocalName);
          }
          attrName = attrs.getValue(idxAttr);
        } else if (attrLocalName.equals("UnitSymbol")) {
          if (attrUnitSymbol != null) {
            throw CFLib.getDefaultExceptionFactory()
                .newUniqueIndexViolationException(
                    getClass(), S_ProcName, S_LocalName, attrLocalName);
          }
          attrUnitSymbol = attrs.getValue(idxAttr);
        } else if (attrLocalName.equals("FracSymbol")) {
          if (attrFracSymbol != null) {
            throw CFLib.getDefaultExceptionFactory()
                .newUniqueIndexViolationException(
                    getClass(), S_ProcName, S_LocalName, attrLocalName);
          }
          attrFracSymbol = attrs.getValue(idxAttr);
        } else if (attrLocalName.equals("Precis")) {
          if (attrPrecis != null) {
            throw CFLib.getDefaultExceptionFactory()
                .newUniqueIndexViolationException(
                    getClass(), S_ProcName, S_LocalName, attrLocalName);
          }
          attrPrecis = attrs.getValue(idxAttr);
        } else if (attrLocalName.equals("schemaLocation")) {
          // ignored
        } else {
          throw CFLib.getDefaultExceptionFactory()
              .newUnrecognizedAttributeException(
                  getClass(), S_ProcName, getParser().getLocationInfo(), attrLocalName);
        }
      }

      // Ensure that required attributes have values
      if ((attrId == null) || (attrId.length() <= 0)) {
        throw CFLib.getDefaultExceptionFactory()
            .newNullArgumentException(getClass(), S_ProcName, 0, "Id");
      }
      if (attrISOCode == null) {
        throw CFLib.getDefaultExceptionFactory()
            .newNullArgumentException(getClass(), S_ProcName, 0, "ISOCode");
      }
      if (attrName == null) {
        throw CFLib.getDefaultExceptionFactory()
            .newNullArgumentException(getClass(), S_ProcName, 0, "Name");
      }
      if ((attrPrecis == null) || (attrPrecis.length() <= 0)) {
        throw CFLib.getDefaultExceptionFactory()
            .newNullArgumentException(getClass(), S_ProcName, 0, "Precis");
      }

      // Save named attributes to context
      CFLibXmlCoreContext curContext = getParser().getCurContext();
      curContext.putNamedValue("Id", attrId);
      curContext.putNamedValue("ISOCode", attrISOCode);
      curContext.putNamedValue("Name", attrName);
      curContext.putNamedValue("UnitSymbol", attrUnitSymbol);
      curContext.putNamedValue("FracSymbol", attrFracSymbol);
      curContext.putNamedValue("Precis", attrPrecis);

      // Convert string attributes to native Java types
      // and apply the converted attributes to the editBuff.

      short natId;
      natId = Short.parseShort(attrId);
      editBuff.getPKey().setRequiredId(natId);
      editBuff.getISOCurrencyBuff().setRequiredId(natId);

      String natISOCode = attrISOCode;
      editBuff.setRequiredISOCode(natISOCode);

      String natName = attrName;
      editBuff.setRequiredName(natName);

      String natUnitSymbol = attrUnitSymbol;
      editBuff.setOptionalUnitSymbol(natUnitSymbol);

      String natFracSymbol = attrFracSymbol;
      editBuff.setOptionalFracSymbol(natFracSymbol);

      short natPrecis = Short.parseShort(attrPrecis);
      editBuff.setRequiredPrecis(natPrecis);

      // Get the scope/container object

      CFLibXmlCoreContext parentContext = curContext.getPrevContext();
      Object scopeObj;
      if (parentContext != null) {
        scopeObj = parentContext.getNamedValue("Object");
      } else {
        scopeObj = null;
      }

      CFSecuritySaxLoader.LoaderBehaviourEnum loaderBehaviour =
          saxLoader.getISOCurrencyLoaderBehaviour();
      ICFSecurityISOCurrencyEditObj editISOCurrency = null;
      ICFSecurityISOCurrencyObj origISOCurrency =
          (ICFSecurityISOCurrencyObj)
              schemaObj
                  .getISOCurrencyTableObj()
                  .readISOCurrencyByCcyCdIdx(editBuff.getRequiredISOCode());
      editBuff.getPKey().setRequiredId(natId);
      editBuff.getISOCurrencyBuff().setRequiredId(natId);
      if (origISOCurrency == null) {
        editISOCurrency = editBuff;
      } else {
        switch (loaderBehaviour) {
          case Insert:
            break;
          case Update:
            editISOCurrency = (ICFSecurityISOCurrencyEditObj) origISOCurrency.beginEdit();
            editISOCurrency.setRequiredISOCode(editBuff.getRequiredISOCode());
            editISOCurrency.setRequiredName(editBuff.getRequiredName());
            editISOCurrency.setOptionalUnitSymbol(editBuff.getOptionalUnitSymbol());
            editISOCurrency.setOptionalFracSymbol(editBuff.getOptionalFracSymbol());
            editISOCurrency.setRequiredPrecis(editBuff.getRequiredPrecis());
            break;
          case Replace:
            editISOCurrency = (ICFSecurityISOCurrencyEditObj) origISOCurrency.beginEdit();
            editISOCurrency.delete();
            editISOCurrency.endEdit();
            origISOCurrency = null;
            editISOCurrency = editBuff;
            break;
        }
      }

      if (editISOCurrency != null) {
        if (origISOCurrency != null) {
          editISOCurrency.update();
        } else {
          origISOCurrency = (ICFSecurityISOCurrencyObj) editISOCurrency.create();
        }
        editISOCurrency.endEdit();
      }

      curContext.putNamedValue("Object", origISOCurrency);
    } catch (RuntimeException e) {
      throw new RuntimeException(
          "Near "
              + getParser().getLocationInfo()
              + ": Caught and rethrew "
              + e.getClass().getName()
              + " - "
              + e.getMessage(),
          e);
    } catch (Error e) {
      throw new Error(
          "Near "
              + getParser().getLocationInfo()
              + ": Caught and rethrew "
              + e.getClass().getName()
              + " - "
              + e.getMessage(),
          e);
    }
  }