public class sun.jvm.hotspot.ui.ProgressBarPanel extends javax.swing.JPanel
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.ui.ProgressBarPanel
  super_class: javax.swing.JPanel
{
  private javax.swing.JLabel text;
    descriptor: Ljavax/swing/JLabel;
    flags: (0x0002) ACC_PRIVATE

  private javax.swing.JProgressBar bar;
    descriptor: Ljavax/swing/JProgressBar;
    flags: (0x0002) ACC_PRIVATE

  private static final int MAX;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 10000

  public static final int VERTICAL;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int HORIZONTAL;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
         0: .line 41
            aload 0 /* this */
            iconst_0
            invokespecial sun.jvm.hotspot.ui.ProgressBarPanel.<init>:(I)V
         1: .line 42
            return
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/ui/ProgressBarPanel;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
        start local 1 // int layoutType
         0: .line 46
            aload 0 /* this */
            invokespecial javax.swing.JPanel.<init>:()V
         1: .line 47
            iload 1 /* layoutType */
            ifne 11
         2: .line 48
            aload 0 /* this */
            new java.awt.BorderLayout
            dup
            invokespecial java.awt.BorderLayout.<init>:()V
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.setLayout:(Ljava/awt/LayoutManager;)V
         3: .line 49
            aload 0 /* this */
            new javax.swing.JLabel
            dup
            invokespecial javax.swing.JLabel.<init>:()V
            putfield sun.jvm.hotspot.ui.ProgressBarPanel.text:Ljavax/swing/JLabel;
         4: .line 50
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.text:Ljavax/swing/JLabel;
            ldc "North"
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.add:(Ljava/awt/Component;Ljava/lang/Object;)V
         5: .line 51
            aload 0 /* this */
            new javax.swing.JProgressBar
            dup
            iconst_0
            iconst_0
            sipush 10000
            invokespecial javax.swing.JProgressBar.<init>:(III)V
            putfield sun.jvm.hotspot.ui.ProgressBarPanel.bar:Ljavax/swing/JProgressBar;
         6: .line 52
            new javax.swing.JPanel
            dup
            invokespecial javax.swing.JPanel.<init>:()V
            astore 2 /* panel */
        start local 2 // javax.swing.JPanel panel
         7: .line 53
            aload 2 /* panel */
            bipush 10
            bipush 10
            bipush 10
            bipush 10
            invokestatic javax.swing.BorderFactory.createEmptyBorder:(IIII)Ljavax/swing/border/Border;
            invokevirtual javax.swing.JPanel.setBorder:(Ljavax/swing/border/Border;)V
         8: .line 54
            aload 2 /* panel */
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.bar:Ljavax/swing/JProgressBar;
            invokevirtual javax.swing.JPanel.add:(Ljava/awt/Component;)Ljava/awt/Component;
            pop
         9: .line 55
            aload 0 /* this */
            aload 2 /* panel */
            ldc "Center"
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.add:(Ljava/awt/Component;Ljava/lang/Object;)V
        end local 2 // javax.swing.JPanel panel
        10: .line 56
            goto 16
        11: .line 57
      StackMap locals: sun.jvm.hotspot.ui.ProgressBarPanel int
      StackMap stack:
            aload 0 /* this */
            new javax.swing.BoxLayout
            dup
            aload 0 /* this */
            iconst_0
            invokespecial javax.swing.BoxLayout.<init>:(Ljava/awt/Container;I)V
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.setLayout:(Ljava/awt/LayoutManager;)V
        12: .line 58
            aload 0 /* this */
            new javax.swing.JLabel
            dup
            invokespecial javax.swing.JLabel.<init>:()V
            putfield sun.jvm.hotspot.ui.ProgressBarPanel.text:Ljavax/swing/JLabel;
        13: .line 59
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.text:Ljavax/swing/JLabel;
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.add:(Ljava/awt/Component;)Ljava/awt/Component;
            pop
        14: .line 60
            aload 0 /* this */
            new javax.swing.JProgressBar
            dup
            iconst_0
            iconst_0
            sipush 10000
            invokespecial javax.swing.JProgressBar.<init>:(III)V
            putfield sun.jvm.hotspot.ui.ProgressBarPanel.bar:Ljavax/swing/JProgressBar;
        15: .line 61
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.bar:Ljavax/swing/JProgressBar;
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.add:(Ljava/awt/Component;)Ljava/awt/Component;
            pop
        16: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int layoutType
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lsun/jvm/hotspot/ui/ProgressBarPanel;
            0   17     1  layoutType  I
            7   10     2       panel  Ljavax/swing/JPanel;
    MethodParameters:
            Name  Flags
      layoutType  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
        start local 1 // java.lang.String text
         0: .line 66
            aload 0 /* this */
            invokespecial sun.jvm.hotspot.ui.ProgressBarPanel.<init>:()V
         1: .line 67
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.setText:(Ljava/lang/String;)V
         2: .line 68
            return
        end local 1 // java.lang.String text
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/ui/ProgressBarPanel;
            0    3     1  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public void <init>(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
        start local 1 // int layoutType
        start local 2 // java.lang.String text
         0: .line 71
            aload 0 /* this */
            iload 1 /* layoutType */
            invokespecial sun.jvm.hotspot.ui.ProgressBarPanel.<init>:(I)V
         1: .line 72
            aload 0 /* this */
            aload 2 /* text */
            invokevirtual sun.jvm.hotspot.ui.ProgressBarPanel.setText:(Ljava/lang/String;)V
         2: .line 73
            return
        end local 2 // java.lang.String text
        end local 1 // int layoutType
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lsun/jvm/hotspot/ui/ProgressBarPanel;
            0    3     1  layoutType  I
            0    3     2        text  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      layoutType  
      text        

  public void setText(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
        start local 1 // java.lang.String text
         0: .line 76
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.text:Ljavax/swing/JLabel;
            aload 1 /* text */
            invokevirtual javax.swing.JLabel.setText:(Ljava/lang/String;)V
         1: .line 77
            return
        end local 1 // java.lang.String text
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/ui/ProgressBarPanel;
            0    2     1  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public void setValue(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
        start local 1 // double val
         0: .line 80
            dload 1 /* val */
            ldc 10000.0
            dmul
            d2i
            istore 3 /* realVal */
        start local 3 // int realVal
         1: .line 81
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.bar:Ljavax/swing/JProgressBar;
            iload 3 /* realVal */
            invokevirtual javax.swing.JProgressBar.setValue:(I)V
         2: .line 82
            return
        end local 3 // int realVal
        end local 1 // double val
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lsun/jvm/hotspot/ui/ProgressBarPanel;
            0    3     1      val  D
            1    3     3  realVal  I
    MethodParameters:
      Name  Flags
      val   

  public void setIndeterminate(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
        start local 1 // boolean value
         0: .line 85
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.ProgressBarPanel.bar:Ljavax/swing/JProgressBar;
            iload 1 /* value */
            invokevirtual javax.swing.JProgressBar.setIndeterminate:(Z)V
         1: .line 86
            return
        end local 1 // boolean value
        end local 0 // sun.jvm.hotspot.ui.ProgressBarPanel this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/jvm/hotspot/ui/ProgressBarPanel;
            0    2     1  value  Z
    MethodParameters:
       Name  Flags
      value  
}
SourceFile: "ProgressBarPanel.java"