public class android.inputmethodservice.InputMethodService$InputMethodSessionImpl extends android.inputmethodservice.AbstractInputMethodService$AbstractInputMethodSessionImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.inputmethodservice.InputMethodService$InputMethodSessionImpl
  super_class: android.inputmethodservice.AbstractInputMethodService$AbstractInputMethodSessionImpl
{
  final android.inputmethodservice.InputMethodService this$0;
    descriptor: Landroid/inputmethodservice/InputMethodService;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  public void <init>(android.inputmethodservice.InputMethodService);
    descriptor: (Landroid/inputmethodservice/InputMethodService;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
         0: .line 607
            aload 0 /* this */
            aload 1
            putfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            aload 0 /* this */
            aload 1
            invokespecial android.inputmethodservice.AbstractInputMethodService$AbstractInputMethodSessionImpl.<init>:(Landroid/inputmethodservice/AbstractInputMethodService;)V
            return
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
    MethodParameters:
        Name  Flags
      this$0  final

  public void finishInput();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
         0: .line 609
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 610
            return
         2: .line 613
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            invokevirtual android.inputmethodservice.InputMethodService.doFinishInput:()V
         3: .line 614
            return
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;

  public void displayCompletions(android.view.inputmethod.CompletionInfo[]);
    descriptor: ([Landroid/view/inputmethod/CompletionInfo;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // android.view.inputmethod.CompletionInfo[] completions
         0: .line 621
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 622
            return
         2: .line 624
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            aload 1 /* completions */
            putfield android.inputmethodservice.InputMethodService.mCurCompletions:[Landroid/view/inputmethod/CompletionInfo;
         3: .line 625
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            aload 1 /* completions */
            invokevirtual android.inputmethodservice.InputMethodService.onDisplayCompletions:([Landroid/view/inputmethod/CompletionInfo;)V
         4: .line 626
            return
        end local 1 // android.view.inputmethod.CompletionInfo[] completions
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    5     1  completions  [Landroid/view/inputmethod/CompletionInfo;
    MethodParameters:
             Name  Flags
      completions  

  public void updateExtractedText(int, android.view.inputmethod.ExtractedText);
    descriptor: (ILandroid/view/inputmethod/ExtractedText;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // int token
        start local 2 // android.view.inputmethod.ExtractedText text
         0: .line 633
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 634
            return
         2: .line 636
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            iload 1 /* token */
            aload 2 /* text */
            invokevirtual android.inputmethodservice.InputMethodService.onUpdateExtractedText:(ILandroid/view/inputmethod/ExtractedText;)V
         3: .line 637
            return
        end local 2 // android.view.inputmethod.ExtractedText text
        end local 1 // int token
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    4     1  token  I
            0    4     2   text  Landroid/view/inputmethod/ExtractedText;
    MethodParameters:
       Name  Flags
      token  
      text   

  public void updateSelection(int, int, int, int, int, int);
    descriptor: (IIIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // int oldSelStart
        start local 2 // int oldSelEnd
        start local 3 // int newSelStart
        start local 4 // int newSelEnd
        start local 5 // int candidatesStart
        start local 6 // int candidatesEnd
         0: .line 646
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 647
            return
         2: .line 649
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            iload 1 /* oldSelStart */
            iload 2 /* oldSelEnd */
         3: .line 650
            iload 3 /* newSelStart */
            iload 4 /* newSelEnd */
            iload 5 /* candidatesStart */
            iload 6 /* candidatesEnd */
         4: .line 649
            invokevirtual android.inputmethodservice.InputMethodService.onUpdateSelection:(IIIIII)V
         5: .line 651
            return
        end local 6 // int candidatesEnd
        end local 5 // int candidatesStart
        end local 4 // int newSelEnd
        end local 3 // int newSelStart
        end local 2 // int oldSelEnd
        end local 1 // int oldSelStart
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    6     1      oldSelStart  I
            0    6     2        oldSelEnd  I
            0    6     3      newSelStart  I
            0    6     4        newSelEnd  I
            0    6     5  candidatesStart  I
            0    6     6    candidatesEnd  I
    MethodParameters:
                 Name  Flags
      oldSelStart      
      oldSelEnd        
      newSelStart      
      newSelEnd        
      candidatesStart  
      candidatesEnd    

  public void viewClicked(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // boolean focusChanged
         0: .line 655
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 656
            return
         2: .line 658
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            iload 1 /* focusChanged */
            invokevirtual android.inputmethodservice.InputMethodService.onViewClicked:(Z)V
         3: .line 659
            return
        end local 1 // boolean focusChanged
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    4     1  focusChanged  Z
    MethodParameters:
              Name  Flags
      focusChanged  

  public void updateCursor(android.graphics.Rect);
    descriptor: (Landroid/graphics/Rect;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // android.graphics.Rect newCursor
         0: .line 666
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 667
            return
         2: .line 669
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            aload 1 /* newCursor */
            invokevirtual android.inputmethodservice.InputMethodService.onUpdateCursor:(Landroid/graphics/Rect;)V
         3: .line 670
            return
        end local 1 // android.graphics.Rect newCursor
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    4     1  newCursor  Landroid/graphics/Rect;
    MethodParameters:
           Name  Flags
      newCursor  

  public void appPrivateCommand(java.lang.String, android.os.Bundle);
    descriptor: (Ljava/lang/String;Landroid/os/Bundle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // java.lang.String action
        start local 2 // android.os.Bundle data
         0: .line 677
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 678
            return
         2: .line 680
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            aload 1 /* action */
            aload 2 /* data */
            invokevirtual android.inputmethodservice.InputMethodService.onAppPrivateCommand:(Ljava/lang/String;Landroid/os/Bundle;)V
         3: .line 681
            return
        end local 2 // android.os.Bundle data
        end local 1 // java.lang.String action
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    4     1  action  Ljava/lang/String;
            0    4     2    data  Landroid/os/Bundle;
    MethodParameters:
        Name  Flags
      action  
      data    

  public void toggleSoftInput(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // int showFlags
        start local 2 // int hideFlags
         0: .line 687
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            iload 1 /* showFlags */
            iload 2 /* hideFlags */
            invokevirtual android.inputmethodservice.InputMethodService.onToggleSoftInput:(II)V
         1: .line 688
            return
        end local 2 // int hideFlags
        end local 1 // int showFlags
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    2     1  showFlags  I
            0    2     2  hideFlags  I
    MethodParameters:
           Name  Flags
      showFlags  
      hideFlags  

  public void updateCursorAnchorInfo(android.view.inputmethod.CursorAnchorInfo);
    descriptor: (Landroid/view/inputmethod/CursorAnchorInfo;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
        start local 1 // android.view.inputmethod.CursorAnchorInfo info
         0: .line 695
            aload 0 /* this */
            invokevirtual android.inputmethodservice.InputMethodService$InputMethodSessionImpl.isEnabled:()Z
            ifne 2
         1: .line 696
            return
         2: .line 698
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.inputmethodservice.InputMethodService$InputMethodSessionImpl.this$0:Landroid/inputmethodservice/InputMethodService;
            aload 1 /* info */
            invokevirtual android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo:(Landroid/view/inputmethod/CursorAnchorInfo;)V
         3: .line 699
            return
        end local 1 // android.view.inputmethod.CursorAnchorInfo info
        end local 0 // android.inputmethodservice.InputMethodService$InputMethodSessionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/inputmethodservice/InputMethodService$InputMethodSessionImpl;
            0    4     1  info  Landroid/view/inputmethod/CursorAnchorInfo;
    MethodParameters:
      Name  Flags
      info  
}
SourceFile: "InputMethodService.java"
NestHost: android.inputmethodservice.InputMethodService
InnerClasses:
  public abstract AbstractInputMethodSessionImpl = android.inputmethodservice.AbstractInputMethodService$AbstractInputMethodSessionImpl of android.inputmethodservice.AbstractInputMethodService
  public InputMethodSessionImpl = android.inputmethodservice.InputMethodService$InputMethodSessionImpl of android.inputmethodservice.InputMethodService