public class org.xml.sax.helpers.XMLFilterImpl implements org.xml.sax.XMLFilter, org.xml.sax.EntityResolver, org.xml.sax.DTDHandler, org.xml.sax.ContentHandler, org.xml.sax.ErrorHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.xml.sax.helpers.XMLFilterImpl
  super_class: java.lang.Object
{
  private org.xml.sax.XMLReader parent;
    descriptor: Lorg/xml/sax/XMLReader;
    flags: (0x0002) ACC_PRIVATE

  private org.xml.sax.Locator locator;
    descriptor: Lorg/xml/sax/Locator;
    flags: (0x0002) ACC_PRIVATE

  private org.xml.sax.EntityResolver entityResolver;
    descriptor: Lorg/xml/sax/EntityResolver;
    flags: (0x0002) ACC_PRIVATE

  private org.xml.sax.DTDHandler dtdHandler;
    descriptor: Lorg/xml/sax/DTDHandler;
    flags: (0x0002) ACC_PRIVATE

  private org.xml.sax.ContentHandler contentHandler;
    descriptor: Lorg/xml/sax/ContentHandler;
    flags: (0x0002) ACC_PRIVATE

  private org.xml.sax.ErrorHandler errorHandler;
    descriptor: Lorg/xml/sax/ErrorHandler;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 101
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 728
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
         2: .line 729
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.locator:Lorg/xml/sax/Locator;
         3: .line 730
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.entityResolver:Lorg/xml/sax/EntityResolver;
         4: .line 731
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
         5: .line 732
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
         6: .line 733
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
         7: .line 102
            return
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;

  public void <init>(org.xml.sax.XMLReader);
    descriptor: (Lorg/xml/sax/XMLReader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.XMLReader parent
         0: .line 113
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 728
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
         2: .line 729
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.locator:Lorg/xml/sax/Locator;
         3: .line 730
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.entityResolver:Lorg/xml/sax/EntityResolver;
         4: .line 731
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
         5: .line 732
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
         6: .line 733
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
         7: .line 114
            aload 0 /* this */
            aload 1 /* parent */
            invokevirtual org.xml.sax.helpers.XMLFilterImpl.setParent:(Lorg/xml/sax/XMLReader;)V
         8: .line 115
            return
        end local 1 // org.xml.sax.XMLReader parent
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    9     1  parent  Lorg/xml/sax/XMLReader;
    MethodParameters:
        Name  Flags
      parent  

  public void setParent(org.xml.sax.XMLReader);
    descriptor: (Lorg/xml/sax/XMLReader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.XMLReader parent
         0: .line 139
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
         1: .line 140
            return
        end local 1 // org.xml.sax.XMLReader parent
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    2     1  parent  Lorg/xml/sax/XMLReader;
    MethodParameters:
        Name  Flags
      parent  

  public org.xml.sax.XMLReader getParent();
    descriptor: ()Lorg/xml/sax/XMLReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 151
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            areturn
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;

  public void setFeature(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
        start local 2 // boolean value
         0: .line 177
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            ifnull 3
         1: .line 178
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 1 /* name */
            iload 2 /* value */
            invokeinterface org.xml.sax.XMLReader.setFeature:(Ljava/lang/String;Z)V
         2: .line 179
            goto 4
         3: .line 180
      StackMap locals:
      StackMap stack:
            new org.xml.sax.SAXNotRecognizedException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Feature: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.xml.sax.SAXNotRecognizedException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 182
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean value
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    5     1   name  Ljava/lang/String;
            0    5     2  value  Z
    Exceptions:
      throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException
    MethodParameters:
       Name  Flags
      name   
      value  

  public boolean getFeature(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
         0: .line 201
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            ifnull 2
         1: .line 202
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 1 /* name */
            invokeinterface org.xml.sax.XMLReader.getFeature:(Ljava/lang/String;)Z
            ireturn
         2: .line 204
      StackMap locals:
      StackMap stack:
            new org.xml.sax.SAXNotRecognizedException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Feature: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.xml.sax.SAXNotRecognizedException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  name  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException
    MethodParameters:
      Name  Flags
      name  

  public void setProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 225
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            ifnull 3
         1: .line 226
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 1 /* name */
            aload 2 /* value */
            invokeinterface org.xml.sax.XMLReader.setProperty:(Ljava/lang/String;Ljava/lang/Object;)V
         2: .line 227
            goto 4
         3: .line 228
      StackMap locals:
      StackMap stack:
            new org.xml.sax.SAXNotRecognizedException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Property: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.xml.sax.SAXNotRecognizedException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    5     1   name  Ljava/lang/String;
            0    5     2  value  Ljava/lang/Object;
    Exceptions:
      throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException
    MethodParameters:
       Name  Flags
      name   
      value  

  public java.lang.Object getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
         0: .line 247
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            ifnull 2
         1: .line 248
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 1 /* name */
            invokeinterface org.xml.sax.XMLReader.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
         2: .line 250
      StackMap locals:
      StackMap stack:
            new org.xml.sax.SAXNotRecognizedException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Property: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.xml.sax.SAXNotRecognizedException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  name  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException
    MethodParameters:
      Name  Flags
      name  

  public void setEntityResolver(org.xml.sax.EntityResolver);
    descriptor: (Lorg/xml/sax/EntityResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.EntityResolver resolver
         0: .line 262
            aload 0 /* this */
            aload 1 /* resolver */
            putfield org.xml.sax.helpers.XMLFilterImpl.entityResolver:Lorg/xml/sax/EntityResolver;
         1: .line 263
            return
        end local 1 // org.xml.sax.EntityResolver resolver
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    2     1  resolver  Lorg/xml/sax/EntityResolver;
    MethodParameters:
          Name  Flags
      resolver  

  public org.xml.sax.EntityResolver getEntityResolver();
    descriptor: ()Lorg/xml/sax/EntityResolver;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 273
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.entityResolver:Lorg/xml/sax/EntityResolver;
            areturn
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;

  public void setDTDHandler(org.xml.sax.DTDHandler);
    descriptor: (Lorg/xml/sax/DTDHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.DTDHandler handler
         0: .line 284
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
         1: .line 285
            return
        end local 1 // org.xml.sax.DTDHandler handler
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    2     1  handler  Lorg/xml/sax/DTDHandler;
    MethodParameters:
         Name  Flags
      handler  

  public org.xml.sax.DTDHandler getDTDHandler();
    descriptor: ()Lorg/xml/sax/DTDHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 295
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
            areturn
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;

  public void setContentHandler(org.xml.sax.ContentHandler);
    descriptor: (Lorg/xml/sax/ContentHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.ContentHandler handler
         0: .line 306
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
         1: .line 307
            return
        end local 1 // org.xml.sax.ContentHandler handler
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    2     1  handler  Lorg/xml/sax/ContentHandler;
    MethodParameters:
         Name  Flags
      handler  

  public org.xml.sax.ContentHandler getContentHandler();
    descriptor: ()Lorg/xml/sax/ContentHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 317
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            areturn
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;

  public void setErrorHandler(org.xml.sax.ErrorHandler);
    descriptor: (Lorg/xml/sax/ErrorHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.ErrorHandler handler
         0: .line 328
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
         1: .line 329
            return
        end local 1 // org.xml.sax.ErrorHandler handler
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    2     1  handler  Lorg/xml/sax/ErrorHandler;
    MethodParameters:
         Name  Flags
      handler  

  public org.xml.sax.ErrorHandler getErrorHandler();
    descriptor: ()Lorg/xml/sax/ErrorHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 339
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            areturn
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;

  public void parse(org.xml.sax.InputSource);
    descriptor: (Lorg/xml/sax/InputSource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.InputSource input
         0: .line 356
            aload 0 /* this */
            invokevirtual org.xml.sax.helpers.XMLFilterImpl.setupParse:()V
         1: .line 357
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 1 /* input */
            invokeinterface org.xml.sax.XMLReader.parse:(Lorg/xml/sax/InputSource;)V
         2: .line 358
            return
        end local 1 // org.xml.sax.InputSource input
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  input  Lorg/xml/sax/InputSource;
    Exceptions:
      throws org.xml.sax.SAXException, java.io.IOException
    MethodParameters:
       Name  Flags
      input  

  public void parse(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String systemId
         0: .line 374
            aload 0 /* this */
            new org.xml.sax.InputSource
            dup
            aload 1 /* systemId */
            invokespecial org.xml.sax.InputSource.<init>:(Ljava/lang/String;)V
            invokevirtual org.xml.sax.helpers.XMLFilterImpl.parse:(Lorg/xml/sax/InputSource;)V
         1: .line 375
            return
        end local 1 // java.lang.String systemId
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    2     1  systemId  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException, java.io.IOException
    MethodParameters:
          Name  Flags
      systemId  

  public org.xml.sax.InputSource resolveEntity(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lorg/xml/sax/InputSource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String publicId
        start local 2 // java.lang.String systemId
         0: .line 399
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.entityResolver:Lorg/xml/sax/EntityResolver;
            ifnull 2
         1: .line 400
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.entityResolver:Lorg/xml/sax/EntityResolver;
            aload 1 /* publicId */
            aload 2 /* systemId */
            invokeinterface org.xml.sax.EntityResolver.resolveEntity:(Ljava/lang/String;Ljava/lang/String;)Lorg/xml/sax/InputSource;
            areturn
         2: .line 402
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.String systemId
        end local 1 // java.lang.String publicId
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  publicId  Ljava/lang/String;
            0    3     2  systemId  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException, java.io.IOException
    MethodParameters:
          Name  Flags
      publicId  
      systemId  

  public void notationDecl(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String publicId
        start local 3 // java.lang.String systemId
         0: .line 425
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
            ifnull 2
         1: .line 426
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
            aload 1 /* name */
            aload 2 /* publicId */
            aload 3 /* systemId */
            invokeinterface org.xml.sax.DTDHandler.notationDecl:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 428
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String systemId
        end local 2 // java.lang.String publicId
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1      name  Ljava/lang/String;
            0    3     2  publicId  Ljava/lang/String;
            0    3     3  systemId  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
          Name  Flags
      name      
      publicId  
      systemId  

  public void unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String publicId
        start local 3 // java.lang.String systemId
        start local 4 // java.lang.String notationName
         0: .line 445
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
            ifnull 4
         1: .line 446
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.dtdHandler:Lorg/xml/sax/DTDHandler;
            aload 1 /* name */
            aload 2 /* publicId */
            aload 3 /* systemId */
         2: .line 447
            aload 4 /* notationName */
         3: .line 446
            invokeinterface org.xml.sax.DTDHandler.unparsedEntityDecl:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         4: .line 449
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String notationName
        end local 3 // java.lang.String systemId
        end local 2 // java.lang.String publicId
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    5     1          name  Ljava/lang/String;
            0    5     2      publicId  Ljava/lang/String;
            0    5     3      systemId  Ljava/lang/String;
            0    5     4  notationName  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
              Name  Flags
      name          
      publicId      
      systemId      
      notationName  

  public void setDocumentLocator(org.xml.sax.Locator);
    descriptor: (Lorg/xml/sax/Locator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.Locator locator
         0: .line 465
            aload 0 /* this */
            aload 1 /* locator */
            putfield org.xml.sax.helpers.XMLFilterImpl.locator:Lorg/xml/sax/Locator;
         1: .line 466
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 3
         2: .line 467
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* locator */
            invokeinterface org.xml.sax.ContentHandler.setDocumentLocator:(Lorg/xml/sax/Locator;)V
         3: .line 469
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.Locator locator
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    4     1  locator  Lorg/xml/sax/Locator;
    MethodParameters:
         Name  Flags
      locator  

  public void startDocument();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 481
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 482
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            invokeinterface org.xml.sax.ContentHandler.startDocument:()V
         2: .line 484
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
    Exceptions:
      throws org.xml.sax.SAXException

  public void endDocument();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 496
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 497
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            invokeinterface org.xml.sax.ContentHandler.endDocument:()V
         2: .line 499
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
    Exceptions:
      throws org.xml.sax.SAXException

  public void startPrefixMapping(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String prefix
        start local 2 // java.lang.String uri
         0: .line 513
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 514
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* prefix */
            aload 2 /* uri */
            invokeinterface org.xml.sax.ContentHandler.startPrefixMapping:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 516
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String uri
        end local 1 // java.lang.String prefix
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  prefix  Ljava/lang/String;
            0    3     2     uri  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
        Name  Flags
      prefix  
      uri     

  public void endPrefixMapping(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String prefix
         0: .line 529
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 530
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* prefix */
            invokeinterface org.xml.sax.ContentHandler.endPrefixMapping:(Ljava/lang/String;)V
         2: .line 532
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String prefix
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  prefix  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
        Name  Flags
      prefix  

  public void startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String uri
        start local 2 // java.lang.String localName
        start local 3 // java.lang.String qName
        start local 4 // org.xml.sax.Attributes atts
         0: .line 550
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 551
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* uri */
            aload 2 /* localName */
            aload 3 /* qName */
            aload 4 /* atts */
            invokeinterface org.xml.sax.ContentHandler.startElement:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V
         2: .line 553
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.xml.sax.Attributes atts
        end local 3 // java.lang.String qName
        end local 2 // java.lang.String localName
        end local 1 // java.lang.String uri
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1        uri  Ljava/lang/String;
            0    3     2  localName  Ljava/lang/String;
            0    3     3      qName  Ljava/lang/String;
            0    3     4       atts  Lorg/xml/sax/Attributes;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
           Name  Flags
      uri        
      localName  
      qName      
      atts       

  public void endElement(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String uri
        start local 2 // java.lang.String localName
        start local 3 // java.lang.String qName
         0: .line 569
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 570
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* uri */
            aload 2 /* localName */
            aload 3 /* qName */
            invokeinterface org.xml.sax.ContentHandler.endElement:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 572
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String qName
        end local 2 // java.lang.String localName
        end local 1 // java.lang.String uri
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1        uri  Ljava/lang/String;
            0    3     2  localName  Ljava/lang/String;
            0    3     3      qName  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
           Name  Flags
      uri        
      localName  
      qName      

  public void characters(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // char[] ch
        start local 2 // int start
        start local 3 // int length
         0: .line 587
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 588
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* ch */
            iload 2 /* start */
            iload 3 /* length */
            invokeinterface org.xml.sax.ContentHandler.characters:([CII)V
         2: .line 590
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int length
        end local 2 // int start
        end local 1 // char[] ch
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1      ch  [C
            0    3     2   start  I
            0    3     3  length  I
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
        Name  Flags
      ch      
      start   
      length  

  public void ignorableWhitespace(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // char[] ch
        start local 2 // int start
        start local 3 // int length
         0: .line 605
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 606
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* ch */
            iload 2 /* start */
            iload 3 /* length */
            invokeinterface org.xml.sax.ContentHandler.ignorableWhitespace:([CII)V
         2: .line 608
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int length
        end local 2 // int start
        end local 1 // char[] ch
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1      ch  [C
            0    3     2   start  I
            0    3     3  length  I
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
        Name  Flags
      ch      
      start   
      length  

  public void processingInstruction(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String target
        start local 2 // java.lang.String data
         0: .line 622
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 623
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* target */
            aload 2 /* data */
            invokeinterface org.xml.sax.ContentHandler.processingInstruction:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 625
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String data
        end local 1 // java.lang.String target
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  target  Ljava/lang/String;
            0    3     2    data  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
        Name  Flags
      target  
      data    

  public void skippedEntity(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // java.lang.String name
         0: .line 638
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            ifnull 2
         1: .line 639
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.contentHandler:Lorg/xml/sax/ContentHandler;
            aload 1 /* name */
            invokeinterface org.xml.sax.ContentHandler.skippedEntity:(Ljava/lang/String;)V
         2: .line 641
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String name
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1  name  Ljava/lang/String;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      name  

  public void warning(org.xml.sax.SAXParseException);
    descriptor: (Lorg/xml/sax/SAXParseException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.SAXParseException e
         0: .line 660
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            ifnull 2
         1: .line 661
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            aload 1 /* e */
            invokeinterface org.xml.sax.ErrorHandler.warning:(Lorg/xml/sax/SAXParseException;)V
         2: .line 663
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.SAXParseException e
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1     e  Lorg/xml/sax/SAXParseException;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      e     

  public void error(org.xml.sax.SAXParseException);
    descriptor: (Lorg/xml/sax/SAXParseException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.SAXParseException e
         0: .line 676
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            ifnull 2
         1: .line 677
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            aload 1 /* e */
            invokeinterface org.xml.sax.ErrorHandler.error:(Lorg/xml/sax/SAXParseException;)V
         2: .line 679
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.SAXParseException e
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1     e  Lorg/xml/sax/SAXParseException;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      e     

  public void fatalError(org.xml.sax.SAXParseException);
    descriptor: (Lorg/xml/sax/SAXParseException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
        start local 1 // org.xml.sax.SAXParseException e
         0: .line 692
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            ifnull 2
         1: .line 693
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.errorHandler:Lorg/xml/sax/ErrorHandler;
            aload 1 /* e */
            invokeinterface org.xml.sax.ErrorHandler.fatalError:(Lorg/xml/sax/SAXParseException;)V
         2: .line 695
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.SAXParseException e
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
            0    3     1     e  Lorg/xml/sax/SAXParseException;
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      e     

  private void setupParse();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.xml.sax.helpers.XMLFilterImpl this
         0: .line 713
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            ifnonnull 2
         1: .line 714
            new java.lang.NullPointerException
            dup
            ldc "No parent for filter"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 716
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 0 /* this */
            invokeinterface org.xml.sax.XMLReader.setEntityResolver:(Lorg/xml/sax/EntityResolver;)V
         3: .line 717
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 0 /* this */
            invokeinterface org.xml.sax.XMLReader.setDTDHandler:(Lorg/xml/sax/DTDHandler;)V
         4: .line 718
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 0 /* this */
            invokeinterface org.xml.sax.XMLReader.setContentHandler:(Lorg/xml/sax/ContentHandler;)V
         5: .line 719
            aload 0 /* this */
            getfield org.xml.sax.helpers.XMLFilterImpl.parent:Lorg/xml/sax/XMLReader;
            aload 0 /* this */
            invokeinterface org.xml.sax.XMLReader.setErrorHandler:(Lorg/xml/sax/ErrorHandler;)V
         6: .line 720
            return
        end local 0 // org.xml.sax.helpers.XMLFilterImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/xml/sax/helpers/XMLFilterImpl;
}
SourceFile: "XMLFilterImpl.java"