class com.sun.tools.example.debug.tty.ExceptionSpec extends com.sun.tools.example.debug.tty.EventRequestSpec
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.tools.example.debug.tty.ExceptionSpec
  super_class: com.sun.tools.example.debug.tty.EventRequestSpec
{
  private boolean notifyCaught;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean notifyUncaught;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private void <init>(com.sun.tools.example.debug.tty.ReferenceTypeSpec);
    descriptor: (Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
        start local 1 // com.sun.tools.example.debug.tty.ReferenceTypeSpec refSpec
         0: .line 45
            aload 0 /* this */
            aload 1 /* refSpec */
            iconst_1
            iconst_1
            invokespecial com.sun.tools.example.debug.tty.ExceptionSpec.<init>:(Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;ZZ)V
         1: .line 46
            return
        end local 1 // com.sun.tools.example.debug.tty.ReferenceTypeSpec refSpec
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
            0    2     1  refSpec  Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
    MethodParameters:
         Name  Flags
      refSpec  

  void <init>(com.sun.tools.example.debug.tty.ReferenceTypeSpec, boolean, boolean);
    descriptor: (Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;ZZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
        start local 1 // com.sun.tools.example.debug.tty.ReferenceTypeSpec refSpec
        start local 2 // boolean notifyCaught
        start local 3 // boolean notifyUncaught
         0: .line 51
            aload 0 /* this */
            aload 1 /* refSpec */
            invokespecial com.sun.tools.example.debug.tty.EventRequestSpec.<init>:(Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;)V
         1: .line 52
            aload 0 /* this */
            iload 2 /* notifyCaught */
            putfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:Z
         2: .line 53
            aload 0 /* this */
            iload 3 /* notifyUncaught */
            putfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:Z
         3: .line 54
            return
        end local 3 // boolean notifyUncaught
        end local 2 // boolean notifyCaught
        end local 1 // com.sun.tools.example.debug.tty.ReferenceTypeSpec refSpec
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
            0    4     1         refSpec  Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            0    4     2    notifyCaught  Z
            0    4     3  notifyUncaught  Z
    MethodParameters:
                Name  Flags
      refSpec         
      notifyCaught    
      notifyUncaught  

  com.sun.jdi.request.EventRequest resolveEventRequest(com.sun.jdi.ReferenceType);
    descriptor: (Lcom/sun/jdi/ReferenceType;)Lcom/sun/jdi/request/EventRequest;
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
        start local 1 // com.sun.jdi.ReferenceType refType
         0: .line 61
            aload 1 /* refType */
            invokeinterface com.sun.jdi.ReferenceType.virtualMachine:()Lcom/sun/jdi/VirtualMachine;
            invokeinterface com.sun.jdi.VirtualMachine.eventRequestManager:()Lcom/sun/jdi/request/EventRequestManager;
            astore 2 /* em */
        start local 2 // com.sun.jdi.request.EventRequestManager em
         1: .line 62
            aload 2 /* em */
            aload 1 /* refType */
         2: .line 63
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:Z
         3: .line 64
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:Z
         4: .line 62
            invokeinterface com.sun.jdi.request.EventRequestManager.createExceptionRequest:(Lcom/sun/jdi/ReferenceType;ZZ)Lcom/sun/jdi/request/ExceptionRequest;
            astore 3 /* excReq */
        start local 3 // com.sun.jdi.request.ExceptionRequest excReq
         5: .line 65
            aload 3 /* excReq */
            invokeinterface com.sun.jdi.request.ExceptionRequest.enable:()V
         6: .line 66
            aload 3 /* excReq */
            areturn
        end local 3 // com.sun.jdi.request.ExceptionRequest excReq
        end local 2 // com.sun.jdi.request.EventRequestManager em
        end local 1 // com.sun.jdi.ReferenceType refType
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
            0    7     1  refType  Lcom/sun/jdi/ReferenceType;
            1    7     2       em  Lcom/sun/jdi/request/EventRequestManager;
            5    7     3   excReq  Lcom/sun/jdi/request/ExceptionRequest;
    MethodParameters:
         Name  Flags
      refType  

  public boolean notifyCaught();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
         0: .line 70
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:Z
            ireturn
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;

  public boolean notifyUncaught();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
         0: .line 74
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:Z
            ireturn
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
         0: .line 80
            bipush 17
            istore 1 /* result */
        start local 1 // int result
         1: .line 81
            bipush 37
            iload 1 /* result */
            imul
            aload 0 /* this */
            invokevirtual com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:()Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals: com.sun.tools.example.debug.tty.ExceptionSpec int
      StackMap stack: int
         2: iconst_1
      StackMap locals: com.sun.tools.example.debug.tty.ExceptionSpec int
      StackMap stack: int int
         3: iadd
            istore 1 /* result */
         4: .line 82
            bipush 37
            iload 1 /* result */
            imul
            aload 0 /* this */
            invokevirtual com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:()Z
            ifeq 5
            iconst_0
            goto 6
      StackMap locals:
      StackMap stack: int
         5: iconst_1
      StackMap locals: com.sun.tools.example.debug.tty.ExceptionSpec int
      StackMap stack: int int
         6: iadd
            istore 1 /* result */
         7: .line 83
            bipush 37
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.refSpec:Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            invokeinterface com.sun.tools.example.debug.tty.ReferenceTypeSpec.hashCode:()I
            iadd
            istore 1 /* result */
         8: .line 84
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
            1    9     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
        start local 1 // java.lang.Object obj
         0: .line 89
            aload 1 /* obj */
            instanceof com.sun.tools.example.debug.tty.ExceptionSpec
            ifeq 6
         1: .line 90
            aload 1 /* obj */
            checkcast com.sun.tools.example.debug.tty.ExceptionSpec
            astore 2 /* es */
        start local 2 // com.sun.tools.example.debug.tty.ExceptionSpec es
         2: .line 92
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.refSpec:Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            aload 2 /* es */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.refSpec:Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            invokeinterface com.sun.tools.example.debug.tty.ReferenceTypeSpec.equals:(Ljava/lang/Object;)Z
            ifeq 6
         3: .line 93
            aload 0 /* this */
            invokevirtual com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:()Z
            aload 2 /* es */
            invokevirtual com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:()Z
            if_icmpne 6
         4: .line 94
            aload 0 /* this */
            invokevirtual com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:()Z
            aload 2 /* es */
            invokevirtual com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:()Z
            if_icmpne 6
         5: .line 95
            iconst_1
            ireturn
        end local 2 // com.sun.tools.example.debug.tty.ExceptionSpec es
         6: .line 98
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
            0    7     1   obj  Ljava/lang/Object;
            2    6     2    es  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
         0: .line 104
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:Z
            ifeq 5
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:Z
            ifne 5
         1: .line 105
            ldc "exceptionSpec caught"
         2: .line 106
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.refSpec:Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
         3: .line 105
            invokestatic com.sun.tools.example.debug.tty.MessageOutput.format:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* s */
        start local 1 // java.lang.String s
         4: .line 107
            goto 13
        end local 1 // java.lang.String s
      StackMap locals:
      StackMap stack:
         5: aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyUncaught:Z
            ifeq 10
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.notifyCaught:Z
            ifne 10
         6: .line 108
            ldc "exceptionSpec uncaught"
         7: .line 109
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.refSpec:Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
         8: .line 108
            invokestatic com.sun.tools.example.debug.tty.MessageOutput.format:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* s */
        start local 1 // java.lang.String s
         9: .line 110
            goto 13
        end local 1 // java.lang.String s
        10: .line 111
      StackMap locals:
      StackMap stack:
            ldc "exceptionSpec all"
        11: .line 112
            aload 0 /* this */
            getfield com.sun.tools.example.debug.tty.ExceptionSpec.refSpec:Lcom/sun/tools/example/debug/tty/ReferenceTypeSpec;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
        12: .line 111
            invokestatic com.sun.tools.example.debug.tty.MessageOutput.format:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* s */
        start local 1 // java.lang.String s
        13: .line 114
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* s */
            areturn
        end local 1 // java.lang.String s
        end local 0 // com.sun.tools.example.debug.tty.ExceptionSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/sun/tools/example/debug/tty/ExceptionSpec;
            4    5     1     s  Ljava/lang/String;
            9   10     1     s  Ljava/lang/String;
           13   14     1     s  Ljava/lang/String;
}
SourceFile: "ExceptionSpec.java"