public abstract class com.sun.org.apache.xerces.internal.parsers.XMLParser
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.org.apache.xerces.internal.parsers.XMLParser
  super_class: java.lang.Object
{
  protected static final java.lang.String ENTITY_RESOLVER;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "http://apache.org/xml/properties/internal/entity-resolver"

  protected static final java.lang.String ERROR_HANDLER;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "http://apache.org/xml/properties/internal/error-handler"

  private static final java.lang.String[] RECOGNIZED_PROPERTIES;
    descriptor: [Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  protected com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration fConfiguration;
    descriptor: Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
    flags: (0x0004) ACC_PROTECTED

  com.sun.org.apache.xerces.internal.utils.XMLSecurityManager securityManager;
    descriptor: Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager;
    flags: (0x0000) 

  com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager securityPropertyManager;
    descriptor: Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager;
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 71
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
         1: .line 72
            ldc "http://apache.org/xml/properties/internal/entity-resolver"
            aastore
            dup
            iconst_1
         2: .line 73
            ldc "http://apache.org/xml/properties/internal/error-handler"
            aastore
         3: .line 71
            putstatic com.sun.org.apache.xerces.internal.parsers.XMLParser.RECOGNIZED_PROPERTIES:[Ljava/lang/String;
         4: .line 74
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean getFeature(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
        start local 1 // java.lang.String featureId
         0: .line 99
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.fConfiguration:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
            aload 1 /* featureId */
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration.getFeature:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String featureId
        end local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/org/apache/xerces/internal/parsers/XMLParser;
            0    1     1  featureId  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXNotSupportedException, org.xml.sax.SAXNotRecognizedException
    MethodParameters:
           Name  Flags
      featureId  

  protected void <init>(com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration);
    descriptor: (Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
        start local 1 // com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration config
         0: .line 106
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 109
            aload 0 /* this */
            aload 1 /* config */
            putfield com.sun.org.apache.xerces.internal.parsers.XMLParser.fConfiguration:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
         2: .line 112
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.fConfiguration:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
            getstatic com.sun.org.apache.xerces.internal.parsers.XMLParser.RECOGNIZED_PROPERTIES:[Ljava/lang/String;
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration.addRecognizedProperties:([Ljava/lang/String;)V
         3: .line 114
            return
        end local 1 // com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration config
        end local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/sun/org/apache/xerces/internal/parsers/XMLParser;
            0    4     1  config  Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
    MethodParameters:
        Name  Flags
      config  

  public void parse(com.sun.org.apache.xerces.internal.xni.parser.XMLInputSource);
    descriptor: (Lcom/sun/org/apache/xerces/internal/xni/parser/XMLInputSource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
        start local 1 // com.sun.org.apache.xerces.internal.xni.parser.XMLInputSource inputSource
         0: .line 131
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.securityManager:Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager;
            ifnonnull 3
         1: .line 132
            aload 0 /* this */
            new com.sun.org.apache.xerces.internal.utils.XMLSecurityManager
            dup
            iconst_1
            invokespecial com.sun.org.apache.xerces.internal.utils.XMLSecurityManager.<init>:(Z)V
            putfield com.sun.org.apache.xerces.internal.parsers.XMLParser.securityManager:Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager;
         2: .line 133
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.fConfiguration:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
            ldc "http://apache.org/xml/properties/security-manager"
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.securityManager:Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager;
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration.setProperty:(Ljava/lang/String;Ljava/lang/Object;)V
         3: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.securityPropertyManager:Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager;
            ifnonnull 6
         4: .line 136
            aload 0 /* this */
            new com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager
            dup
            invokespecial com.sun.org.apache.xerces.internal.utils.XMLSecurityPropertyManager.<init>:()V
            putfield com.sun.org.apache.xerces.internal.parsers.XMLParser.securityPropertyManager:Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager;
         5: .line 137
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.fConfiguration:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
            ldc "http://www.oracle.com/xml/jaxp/properties/xmlSecurityPropertyManager"
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.securityPropertyManager:Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager;
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration.setProperty:(Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xerces.internal.parsers.XMLParser.reset:()V
         7: .line 141
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.parsers.XMLParser.fConfiguration:Lcom/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration;
            aload 1 /* inputSource */
            invokeinterface com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration.parse:(Lcom/sun/org/apache/xerces/internal/xni/parser/XMLInputSource;)V
         8: .line 143
            return
        end local 1 // com.sun.org.apache.xerces.internal.xni.parser.XMLInputSource inputSource
        end local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lcom/sun/org/apache/xerces/internal/parsers/XMLParser;
            0    9     1  inputSource  Lcom/sun/org/apache/xerces/internal/xni/parser/XMLInputSource;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.XNIException, java.io.IOException
    MethodParameters:
             Name  Flags
      inputSource  

  protected void reset();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
         0: .line 153
            return
        end local 0 // com.sun.org.apache.xerces.internal.parsers.XMLParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/parsers/XMLParser;
    Exceptions:
      throws com.sun.org.apache.xerces.internal.xni.XNIException
}
SourceFile: "XMLParser.java"