public abstract class com.sun.webkit.ContextMenu
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.webkit.ContextMenu
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.webkit.ContextMenu this
         0: .line 28
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.sun.webkit.ContextMenu this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/webkit/ContextMenu;

  protected abstract void show(com.sun.webkit.ContextMenu$ShowContext, int, int);
    descriptor: (Lcom/sun/webkit/ContextMenu$ShowContext;II)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
             Name  Flags
      showContext  
      x            
      y            

  protected abstract void appendItem(com.sun.webkit.ContextMenuItem);
    descriptor: (Lcom/sun/webkit/ContextMenuItem;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      item  

  protected abstract void insertItem(com.sun.webkit.ContextMenuItem, int);
    descriptor: (Lcom/sun/webkit/ContextMenuItem;I)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      item   
      index  

  protected abstract int getItemCount();
    descriptor: ()I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  private static com.sun.webkit.ContextMenu fwkCreateContextMenu();
    descriptor: ()Lcom/sun/webkit/ContextMenu;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 57
            invokestatic com.sun.webkit.Utilities.getUtilities:()Lcom/sun/webkit/Utilities;
            invokevirtual com.sun.webkit.Utilities.createContextMenu:()Lcom/sun/webkit/ContextMenu;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void fwkShow(com.sun.webkit.WebPage, long, int, int);
    descriptor: (Lcom/sun/webkit/WebPage;JII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // com.sun.webkit.ContextMenu this
        start local 1 // com.sun.webkit.WebPage webPage
        start local 2 // long pData
        start local 4 // int x
        start local 5 // int y
         0: .line 61
            aload 0 /* this */
            new com.sun.webkit.ContextMenu$ShowContext
            dup
            aload 0 /* this */
            aload 1 /* webPage */
            lload 2 /* pData */
            invokespecial com.sun.webkit.ContextMenu$ShowContext.<init>:(Lcom/sun/webkit/ContextMenu;Lcom/sun/webkit/WebPage;J)V
            iload 4 /* x */
            iload 5 /* y */
            invokevirtual com.sun.webkit.ContextMenu.show:(Lcom/sun/webkit/ContextMenu$ShowContext;II)V
         1: .line 62
            return
        end local 5 // int y
        end local 4 // int x
        end local 2 // long pData
        end local 1 // com.sun.webkit.WebPage webPage
        end local 0 // com.sun.webkit.ContextMenu this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/sun/webkit/ContextMenu;
            0    2     1  webPage  Lcom/sun/webkit/WebPage;
            0    2     2    pData  J
            0    2     4        x  I
            0    2     5        y  I
    MethodParameters:
         Name  Flags
      webPage  
      pData    
      x        
      y        

  private void fwkAppendItem(com.sun.webkit.ContextMenuItem);
    descriptor: (Lcom/sun/webkit/ContextMenuItem;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.webkit.ContextMenu this
        start local 1 // com.sun.webkit.ContextMenuItem item
         0: .line 65
            aload 0 /* this */
            aload 1 /* item */
            invokevirtual com.sun.webkit.ContextMenu.appendItem:(Lcom/sun/webkit/ContextMenuItem;)V
         1: .line 66
            return
        end local 1 // com.sun.webkit.ContextMenuItem item
        end local 0 // com.sun.webkit.ContextMenu this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/webkit/ContextMenu;
            0    2     1  item  Lcom/sun/webkit/ContextMenuItem;
    MethodParameters:
      Name  Flags
      item  

  private void fwkInsertItem(com.sun.webkit.ContextMenuItem, int);
    descriptor: (Lcom/sun/webkit/ContextMenuItem;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.webkit.ContextMenu this
        start local 1 // com.sun.webkit.ContextMenuItem item
        start local 2 // int index
         0: .line 69
            aload 0 /* this */
            aload 1 /* item */
            iload 2 /* index */
            invokevirtual com.sun.webkit.ContextMenu.insertItem:(Lcom/sun/webkit/ContextMenuItem;I)V
         1: .line 70
            return
        end local 2 // int index
        end local 1 // com.sun.webkit.ContextMenuItem item
        end local 0 // com.sun.webkit.ContextMenu this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/webkit/ContextMenu;
            0    2     1   item  Lcom/sun/webkit/ContextMenuItem;
            0    2     2  index  I
    MethodParameters:
       Name  Flags
      item   
      index  

  private int fwkGetItemCount();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.webkit.ContextMenu this
         0: .line 73
            aload 0 /* this */
            invokevirtual com.sun.webkit.ContextMenu.getItemCount:()I
            ireturn
        end local 0 // com.sun.webkit.ContextMenu this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/webkit/ContextMenu;

  private native void twkHandleItemSelected(long, int);
    descriptor: (JI)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
            Name  Flags
      menuPData   
      itemAction  
}
SourceFile: "ContextMenu.java"
NestMembers:
  com.sun.webkit.ContextMenu$ShowContext
InnerClasses:
  public final ShowContext = com.sun.webkit.ContextMenu$ShowContext of com.sun.webkit.ContextMenu