public IntegerInfo(Element integerElement, ObjectFactoryParser configParser) {
    super(integerElement, configParser);

    String contentText = getValueString(integerElement);
    try {
      i = new Integer(contentText);
    } catch (Exception e) {
      throw new JbpmException(
          "content of " + XmlUtil.toString(integerElement) + " could not be parsed as a integer",
          e);
    }
  }