final class com.ctc.wstx.dtd.DTDWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.ctc.wstx.dtd.DTDWriter
  super_class: java.lang.Object
{
  final java.io.Writer mWriter;
    descriptor: Ljava/io/Writer;
    flags: (0x0010) ACC_FINAL

  final boolean mIncludeComments;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  final boolean mIncludeConditionals;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  final boolean mIncludePEs;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  int mIsFlattening;
    descriptor: I
    flags: (0x0000) 

  int mFlattenStart;
    descriptor: I
    flags: (0x0000) 

  public void <init>(java.io.Writer, boolean, boolean, boolean);
    descriptor: (Ljava/io/Writer;ZZZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
        start local 1 // java.io.Writer out
        start local 2 // boolean inclComments
        start local 3 // boolean inclCond
        start local 4 // boolean inclPEs
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
         2: .line 57
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
         3: .line 68
            aload 0 /* this */
            aload 1 /* out */
            putfield com.ctc.wstx.dtd.DTDWriter.mWriter:Ljava/io/Writer;
         4: .line 69
            aload 0 /* this */
            iload 2 /* inclComments */
            putfield com.ctc.wstx.dtd.DTDWriter.mIncludeComments:Z
         5: .line 70
            aload 0 /* this */
            iload 3 /* inclCond */
            putfield com.ctc.wstx.dtd.DTDWriter.mIncludeConditionals:Z
         6: .line 71
            aload 0 /* this */
            iload 4 /* inclPEs */
            putfield com.ctc.wstx.dtd.DTDWriter.mIncludePEs:Z
         7: .line 73
            aload 0 /* this */
            iconst_1
            putfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
         8: .line 74
            return
        end local 4 // boolean inclPEs
        end local 3 // boolean inclCond
        end local 2 // boolean inclComments
        end local 1 // java.io.Writer out
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lcom/ctc/wstx/dtd/DTDWriter;
            0    9     1           out  Ljava/io/Writer;
            0    9     2  inclComments  Z
            0    9     3      inclCond  Z
            0    9     4       inclPEs  Z
    MethodParameters:
              Name  Flags
      out           
      inclComments  
      inclCond      
      inclPEs       

  public boolean includeComments();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
         0: .line 83
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mIncludeComments:Z
            ireturn
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/dtd/DTDWriter;

  public boolean includeConditionals();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
         0: .line 87
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mIncludeConditionals:Z
            ireturn
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/dtd/DTDWriter;

  public boolean includeParamEntities();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
         0: .line 91
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mIncludePEs:Z
            ireturn
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/dtd/DTDWriter;

  public void disableOutput();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
         0: .line 96
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
            iconst_1
            isub
            putfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
         1: .line 97
            return
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/ctc/wstx/dtd/DTDWriter;

  public void enableOutput(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
        start local 1 // int newStart
         0: .line 101
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
            iconst_1
            iadd
            putfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
         1: .line 102
            aload 0 /* this */
            iload 1 /* newStart */
            putfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
         2: .line 103
            return
        end local 1 // int newStart
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/ctc/wstx/dtd/DTDWriter;
            0    3     1  newStart  I
    MethodParameters:
          Name  Flags
      newStart  

  public void setFlattenStart(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
        start local 1 // int ptr
         0: .line 106
            aload 0 /* this */
            iload 1 /* ptr */
            putfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
         1: .line 107
            return
        end local 1 // int ptr
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/ctc/wstx/dtd/DTDWriter;
            0    2     1   ptr  I
    MethodParameters:
      Name  Flags
      ptr   

  public int getFlattenStart();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
         0: .line 110
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
            ireturn
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/dtd/DTDWriter;

  public void flush(char[], int);
    descriptor: ([CI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
        start local 1 // char[] buf
        start local 2 // int upUntil
         0: .line 122
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
            iload 2 /* upUntil */
            if_icmpge 7
         1: .line 123
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
            ifle 6
         2: .line 125
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mWriter:Ljava/io/Writer;
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
            iload 2 /* upUntil */
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
            isub
            invokevirtual java.io.Writer.write:([CII)V
         3: .line 126
            goto 6
      StackMap locals:
      StackMap stack: java.io.IOException
         4: astore 3 /* ioe */
        start local 3 // java.io.IOException ioe
         5: .line 127
            new com.ctc.wstx.exc.WstxIOException
            dup
            aload 3 /* ioe */
            invokespecial com.ctc.wstx.exc.WstxIOException.<init>:(Ljava/io/IOException;)V
            athrow
        end local 3 // java.io.IOException ioe
         6: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* upUntil */
            putfield com.ctc.wstx.dtd.DTDWriter.mFlattenStart:I
         7: .line 132
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int upUntil
        end local 1 // char[] buf
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/ctc/wstx/dtd/DTDWriter;
            0    8     1      buf  [C
            0    8     2  upUntil  I
            5    6     3      ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
         Name  Flags
      buf      
      upUntil  

  public void output(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
        start local 1 // java.lang.String output
         0: .line 143
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
            ifle 5
         1: .line 145
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mWriter:Ljava/io/Writer;
            aload 1 /* output */
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         2: .line 146
            goto 5
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         4: .line 147
            new com.ctc.wstx.exc.WstxIOException
            dup
            aload 2 /* ioe */
            invokespecial com.ctc.wstx.exc.WstxIOException.<init>:(Ljava/io/IOException;)V
            athrow
        end local 2 // java.io.IOException ioe
         5: .line 150
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String output
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/ctc/wstx/dtd/DTDWriter;
            0    6     1  output  Ljava/lang/String;
            4    5     2     ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
        Name  Flags
      output  

  public void output(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.ctc.wstx.dtd.DTDWriter this
        start local 1 // char c
         0: .line 155
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mIsFlattening:I
            ifle 5
         1: .line 157
            aload 0 /* this */
            getfield com.ctc.wstx.dtd.DTDWriter.mWriter:Ljava/io/Writer;
            iload 1 /* c */
            invokevirtual java.io.Writer.write:(I)V
         2: .line 158
            goto 5
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         4: .line 159
            new com.ctc.wstx.exc.WstxIOException
            dup
            aload 2 /* ioe */
            invokespecial com.ctc.wstx.exc.WstxIOException.<init>:(Ljava/io/IOException;)V
            athrow
        end local 2 // java.io.IOException ioe
         5: .line 162
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char c
        end local 0 // com.ctc.wstx.dtd.DTDWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/ctc/wstx/dtd/DTDWriter;
            0    6     1     c  C
            4    5     2   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c     
}
SourceFile: "DTDWriter.java"