public class com.ctc.wstx.ent.UnparsedExtEntity extends com.ctc.wstx.ent.ExtEntity
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.ctc.wstx.ent.UnparsedExtEntity
  super_class: com.ctc.wstx.ent.ExtEntity
{
  final java.lang.String mNotationId;
    descriptor: Ljava/lang/String;
    flags: (0x0010) ACC_FINAL

  public void <init>(javax.xml.stream.Location, java.lang.String, java.net.URL, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljavax/xml/stream/Location;Ljava/lang/String;Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
        start local 1 // javax.xml.stream.Location loc
        start local 2 // java.lang.String name
        start local 3 // java.net.URL ctxt
        start local 4 // java.lang.String pubId
        start local 5 // java.lang.String sysId
        start local 6 // java.lang.String notationId
         0: .line 22
            aload 0 /* this */
            aload 1 /* loc */
            aload 2 /* name */
            aload 3 /* ctxt */
            aload 4 /* pubId */
            aload 5 /* sysId */
            invokespecial com.ctc.wstx.ent.ExtEntity.<init>:(Ljavax/xml/stream/Location;Ljava/lang/String;Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 23
            aload 0 /* this */
            aload 6 /* notationId */
            putfield com.ctc.wstx.ent.UnparsedExtEntity.mNotationId:Ljava/lang/String;
         2: .line 24
            return
        end local 6 // java.lang.String notationId
        end local 5 // java.lang.String sysId
        end local 4 // java.lang.String pubId
        end local 3 // java.net.URL ctxt
        end local 2 // java.lang.String name
        end local 1 // javax.xml.stream.Location loc
        end local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/ctc/wstx/ent/UnparsedExtEntity;
            0    3     1         loc  Ljavax/xml/stream/Location;
            0    3     2        name  Ljava/lang/String;
            0    3     3        ctxt  Ljava/net/URL;
            0    3     4       pubId  Ljava/lang/String;
            0    3     5       sysId  Ljava/lang/String;
            0    3     6  notationId  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      loc         
      name        
      ctxt        
      pubId       
      sysId       
      notationId  

  public java.lang.String getNotationName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
         0: .line 28
            aload 0 /* this */
            getfield com.ctc.wstx.ent.UnparsedExtEntity.mNotationId:Ljava/lang/String;
            areturn
        end local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/ent/UnparsedExtEntity;

  public void writeEnc(java.io.Writer);
    descriptor: (Ljava/io/Writer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
        start local 1 // java.io.Writer w
         0: .line 40
            aload 1 /* w */
            ldc "<!ENTITY "
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         1: .line 41
            aload 1 /* w */
            aload 0 /* this */
            getfield com.ctc.wstx.ent.UnparsedExtEntity.mName:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         2: .line 42
            aload 0 /* this */
            invokevirtual com.ctc.wstx.ent.UnparsedExtEntity.getPublicId:()Ljava/lang/String;
            astore 2 /* pubId */
        start local 2 // java.lang.String pubId
         3: .line 43
            aload 2 /* pubId */
            ifnull 8
         4: .line 44
            aload 1 /* w */
            ldc "PUBLIC \""
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         5: .line 45
            aload 1 /* w */
            aload 2 /* pubId */
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         6: .line 46
            aload 1 /* w */
            ldc "\" "
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         7: .line 47
            goto 9
         8: .line 48
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* w */
            ldc "SYSTEM "
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         9: .line 50
      StackMap locals:
      StackMap stack:
            aload 1 /* w */
            bipush 34
            invokevirtual java.io.Writer.write:(I)V
        10: .line 51
            aload 1 /* w */
            aload 0 /* this */
            invokevirtual com.ctc.wstx.ent.UnparsedExtEntity.getSystemId:()Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        11: .line 52
            aload 1 /* w */
            ldc "\" NDATA "
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        12: .line 53
            aload 1 /* w */
            aload 0 /* this */
            getfield com.ctc.wstx.ent.UnparsedExtEntity.mNotationId:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        13: .line 54
            aload 1 /* w */
            bipush 62
            invokevirtual java.io.Writer.write:(I)V
        14: .line 55
            return
        end local 2 // java.lang.String pubId
        end local 1 // java.io.Writer w
        end local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lcom/ctc/wstx/ent/UnparsedExtEntity;
            0   15     1      w  Ljava/io/Writer;
            3   15     2  pubId  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      w     

  public boolean isParsed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
         0: .line 66
            iconst_0
            ireturn
        end local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/ent/UnparsedExtEntity;

  public com.ctc.wstx.io.WstxInputSource expand(com.ctc.wstx.io.WstxInputSource, javax.xml.stream.XMLResolver, com.ctc.wstx.api.ReaderConfig, int);
    descriptor: (Lcom/ctc/wstx/io/WstxInputSource;Ljavax/xml/stream/XMLResolver;Lcom/ctc/wstx/api/ReaderConfig;I)Lcom/ctc/wstx/io/WstxInputSource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
        start local 1 // com.ctc.wstx.io.WstxInputSource parent
        start local 2 // javax.xml.stream.XMLResolver res
        start local 3 // com.ctc.wstx.api.ReaderConfig cfg
        start local 4 // int xmlVersion
         0: .line 73
            new java.lang.IllegalStateException
            dup
            ldc "Internal error: createInputSource() called for unparsed (external) entity."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // int xmlVersion
        end local 3 // com.ctc.wstx.api.ReaderConfig cfg
        end local 2 // javax.xml.stream.XMLResolver res
        end local 1 // com.ctc.wstx.io.WstxInputSource parent
        end local 0 // com.ctc.wstx.ent.UnparsedExtEntity this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/ctc/wstx/ent/UnparsedExtEntity;
            0    1     1      parent  Lcom/ctc/wstx/io/WstxInputSource;
            0    1     2         res  Ljavax/xml/stream/XMLResolver;
            0    1     3         cfg  Lcom/ctc/wstx/api/ReaderConfig;
            0    1     4  xmlVersion  I
    MethodParameters:
            Name  Flags
      parent      
      res         
      cfg         
      xmlVersion  
}
SourceFile: "UnparsedExtEntity.java"