class javax.swing.text.JTextComponent$InputMethodRequestsHandler implements java.awt.im.InputMethodRequests, javax.swing.event.DocumentListener
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: javax.swing.text.JTextComponent$InputMethodRequestsHandler
  super_class: java.lang.Object
{
  final javax.swing.text.JTextComponent this$0;
    descriptor: Ljavax/swing/text/JTextComponent;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(javax.swing.text.JTextComponent);
    descriptor: (Ljavax/swing/text/JTextComponent;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
         0: .line 4624
            aload 0 /* this */
            aload 1
            putfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
    MethodParameters:
        Name  Flags
      this$0  final

  public java.text.AttributedCharacterIterator cancelLatestCommittedText(java.text.AttributedCharacterIterator$Attribute[]);
    descriptor: ([Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/text/AttributedCharacterIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // java.text.AttributedCharacterIterator$Attribute[] attributes
         0: .line 4630
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getDocument:()Ljavax/swing/text/Document;
            astore 2 /* doc */
        start local 2 // javax.swing.text.Document doc
         1: .line 4631
            aload 2 /* doc */
            ifnull 11
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.latestCommittedTextStart:Ljavax/swing/text/Position;
            ifnull 11
         2: .line 4632
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.latestCommittedTextStart:Ljavax/swing/text/Position;
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.latestCommittedTextEnd:Ljavax/swing/text/Position;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 11
         3: .line 4634
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.latestCommittedTextStart:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            istore 3 /* startIndex */
        start local 3 // int startIndex
         4: .line 4635
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.latestCommittedTextEnd:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            istore 4 /* endIndex */
        start local 4 // int endIndex
         5: .line 4637
            aload 2 /* doc */
            iload 3 /* startIndex */
            iload 4 /* endIndex */
            iload 3 /* startIndex */
            isub
            invokeinterface javax.swing.text.Document.getText:(II)Ljava/lang/String;
         6: .line 4636
            astore 5 /* latestCommittedText */
        start local 5 // java.lang.String latestCommittedText
         7: .line 4638
            aload 2 /* doc */
            iload 3 /* startIndex */
            iload 4 /* endIndex */
            iload 3 /* startIndex */
            isub
            invokeinterface javax.swing.text.Document.remove:(II)V
         8: .line 4639
            new java.text.AttributedString
            dup
            aload 5 /* latestCommittedText */
            invokespecial java.text.AttributedString.<init>:(Ljava/lang/String;)V
            invokevirtual java.text.AttributedString.getIterator:()Ljava/text/AttributedCharacterIterator;
         9: areturn
        end local 5 // java.lang.String latestCommittedText
        end local 4 // int endIndex
        end local 3 // int startIndex
        10: .line 4640
      StackMap locals: javax.swing.text.JTextComponent$InputMethodRequestsHandler java.text.AttributedCharacterIterator$Attribute[] javax.swing.text.Document
      StackMap stack: javax.swing.text.BadLocationException
            pop
        11: .line 4642
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // javax.swing.text.Document doc
        end local 1 // java.text.AttributedCharacterIterator$Attribute[] attributes
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   12     0                 this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0   12     1           attributes  [Ljava/text/AttributedCharacterIterator$Attribute;
            1   12     2                  doc  Ljavax/swing/text/Document;
            4   10     3           startIndex  I
            5   10     4             endIndex  I
            7   10     5  latestCommittedText  Ljava/lang/String;
      Exception table:
        from    to  target  type
           3     9      10  Class javax.swing.text.BadLocationException
    MethodParameters:
            Name  Flags
      attributes  

  public java.text.AttributedCharacterIterator getCommittedText(int, int, java.text.AttributedCharacterIterator$Attribute[]);
    descriptor: (II[Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/text/AttributedCharacterIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // int beginIndex
        start local 2 // int endIndex
        start local 3 // java.text.AttributedCharacterIterator$Attribute[] attributes
         0: .line 4647
            iconst_0
            istore 4 /* composedStartIndex */
        start local 4 // int composedStartIndex
         1: .line 4648
            iconst_0
            istore 5 /* composedEndIndex */
        start local 5 // int composedEndIndex
         2: .line 4649
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.composedTextExists:()Z
            ifeq 5
         3: .line 4650
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextStart:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            istore 4 /* composedStartIndex */
         4: .line 4651
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextEnd:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            istore 5 /* composedEndIndex */
         5: .line 4656
      StackMap locals: int int
      StackMap stack:
            iload 1 /* beginIndex */
            iload 4 /* composedStartIndex */
            if_icmpge 14
         6: .line 4657
            iload 2 /* endIndex */
            iload 4 /* composedStartIndex */
            if_icmpgt 9
         7: .line 4658
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            iload 1 /* beginIndex */
            iload 2 /* endIndex */
            iload 1 /* beginIndex */
            isub
            invokevirtual javax.swing.text.JTextComponent.getText:(II)Ljava/lang/String;
            astore 6 /* committed */
        start local 6 // java.lang.String committed
         8: .line 4659
            goto 20
        end local 6 // java.lang.String committed
         9: .line 4660
      StackMap locals:
      StackMap stack:
            iload 4 /* composedStartIndex */
            iload 1 /* beginIndex */
            isub
            istore 7 /* firstPartLength */
        start local 7 // int firstPartLength
        10: .line 4661
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            iload 1 /* beginIndex */
            iload 7 /* firstPartLength */
            invokevirtual javax.swing.text.JTextComponent.getText:(II)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        11: .line 4662
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            iload 5 /* composedEndIndex */
            iload 2 /* endIndex */
            iload 1 /* beginIndex */
            isub
            iload 7 /* firstPartLength */
            isub
            invokevirtual javax.swing.text.JTextComponent.getText:(II)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        12: .line 4661
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 6 /* committed */
        end local 7 // int firstPartLength
        start local 6 // java.lang.String committed
        13: .line 4664
            goto 20
        end local 6 // java.lang.String committed
        14: .line 4665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            iload 1 /* beginIndex */
            iload 5 /* composedEndIndex */
            iload 4 /* composedStartIndex */
            isub
            iadd
        15: .line 4666
            iload 2 /* endIndex */
            iload 1 /* beginIndex */
            isub
        16: .line 4665
            invokevirtual javax.swing.text.JTextComponent.getText:(II)Ljava/lang/String;
            astore 6 /* committed */
        start local 6 // java.lang.String committed
        17: .line 4668
            goto 20
        end local 6 // java.lang.String committed
      StackMap locals:
      StackMap stack: javax.swing.text.BadLocationException
        18: pop
        19: .line 4669
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid range"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        start local 6 // java.lang.String committed
        20: .line 4671
      StackMap locals: java.lang.String
      StackMap stack:
            new java.text.AttributedString
            dup
            aload 6 /* committed */
            invokespecial java.text.AttributedString.<init>:(Ljava/lang/String;)V
            invokevirtual java.text.AttributedString.getIterator:()Ljava/text/AttributedCharacterIterator;
            areturn
        end local 6 // java.lang.String committed
        end local 5 // int composedEndIndex
        end local 4 // int composedStartIndex
        end local 3 // java.text.AttributedCharacterIterator$Attribute[] attributes
        end local 2 // int endIndex
        end local 1 // int beginIndex
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   21     0                this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0   21     1          beginIndex  I
            0   21     2            endIndex  I
            0   21     3          attributes  [Ljava/text/AttributedCharacterIterator$Attribute;
            1   21     4  composedStartIndex  I
            2   21     5    composedEndIndex  I
            8    9     6           committed  Ljava/lang/String;
           13   14     6           committed  Ljava/lang/String;
           17   18     6           committed  Ljava/lang/String;
           20   21     6           committed  Ljava/lang/String;
           10   13     7     firstPartLength  I
      Exception table:
        from    to  target  type
           5    17      18  Class javax.swing.text.BadLocationException
    MethodParameters:
            Name  Flags
      beginIndex  
      endIndex    
      attributes  

  public int getCommittedTextLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
         0: .line 4675
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getDocument:()Ljavax/swing/text/Document;
            astore 1 /* doc */
        start local 1 // javax.swing.text.Document doc
         1: .line 4676
            iconst_0
            istore 2 /* length */
        start local 2 // int length
         2: .line 4677
            aload 1 /* doc */
            ifnull 12
         3: .line 4678
            aload 1 /* doc */
            invokeinterface javax.swing.text.Document.getLength:()I
            istore 2 /* length */
         4: .line 4679
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextContent:Ljava/lang/String;
            ifnull 12
         5: .line 4680
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextEnd:Ljavax/swing/text/Position;
            ifnull 7
         6: .line 4681
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextStart:Ljavax/swing/text/Position;
            ifnonnull 9
         7: .line 4689
      StackMap locals: javax.swing.text.Document int
      StackMap stack:
            iload 2 /* length */
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextContent:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            isub
            istore 2 /* length */
         8: .line 4690
            goto 12
         9: .line 4691
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextEnd:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
        10: .line 4692
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextStart:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
        11: .line 4691
            isub
            isub
            istore 2 /* length */
        12: .line 4696
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            ireturn
        end local 2 // int length
        end local 1 // javax.swing.text.Document doc
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            1   13     1     doc  Ljavax/swing/text/Document;
            2   13     2  length  I

  public int getInsertPositionOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
         0: .line 4700
            iconst_0
            istore 1 /* composedStartIndex */
        start local 1 // int composedStartIndex
         1: .line 4701
            iconst_0
            istore 2 /* composedEndIndex */
        start local 2 // int composedEndIndex
         2: .line 4702
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.composedTextExists:()Z
            ifeq 5
         3: .line 4703
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextStart:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            istore 1 /* composedStartIndex */
         4: .line 4704
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextEnd:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            istore 2 /* composedEndIndex */
         5: .line 4706
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getCaretPosition:()I
            istore 3 /* caretIndex */
        start local 3 // int caretIndex
         6: .line 4708
            iload 3 /* caretIndex */
            iload 1 /* composedStartIndex */
            if_icmpge 8
         7: .line 4709
            iload 3 /* caretIndex */
            ireturn
         8: .line 4710
      StackMap locals: int
      StackMap stack:
            iload 3 /* caretIndex */
            iload 2 /* composedEndIndex */
            if_icmpge 10
         9: .line 4711
            iload 1 /* composedStartIndex */
            ireturn
        10: .line 4713
      StackMap locals:
      StackMap stack:
            iload 3 /* caretIndex */
            iload 2 /* composedEndIndex */
            iload 1 /* composedStartIndex */
            isub
            isub
            ireturn
        end local 3 // int caretIndex
        end local 2 // int composedEndIndex
        end local 1 // int composedStartIndex
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   11     0                this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            1   11     1  composedStartIndex  I
            2   11     2    composedEndIndex  I
            6   11     3          caretIndex  I

  public java.awt.font.TextHitInfo getLocationOffset(int, int);
    descriptor: (II)Ljava/awt/font/TextHitInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // int x
        start local 2 // int y
         0: .line 4718
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextAttribute:Ljavax/swing/text/SimpleAttributeSet;
            ifnonnull 2
         1: .line 4719
            aconst_null
            areturn
         2: .line 4721
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getLocationOnScreen:()Ljava/awt/Point;
            astore 3 /* p */
        start local 3 // java.awt.Point p
         3: .line 4722
            aload 3 /* p */
            iload 1 /* x */
            aload 3 /* p */
            getfield java.awt.Point.x:I
            isub
            putfield java.awt.Point.x:I
         4: .line 4723
            aload 3 /* p */
            iload 2 /* y */
            aload 3 /* p */
            getfield java.awt.Point.y:I
            isub
            putfield java.awt.Point.y:I
         5: .line 4724
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aload 3 /* p */
            invokevirtual javax.swing.text.JTextComponent.viewToModel:(Ljava/awt/Point;)I
            istore 4 /* pos */
        start local 4 // int pos
         6: .line 4725
            iload 4 /* pos */
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextStart:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            if_icmplt 9
         7: .line 4726
            iload 4 /* pos */
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextEnd:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            if_icmpgt 9
         8: .line 4727
            iload 4 /* pos */
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            getfield javax.swing.text.JTextComponent.composedTextStart:Ljavax/swing/text/Position;
            invokeinterface javax.swing.text.Position.getOffset:()I
            isub
            invokestatic java.awt.font.TextHitInfo.leading:(I)Ljava/awt/font/TextHitInfo;
            areturn
         9: .line 4729
      StackMap locals: java.awt.Point int
      StackMap stack:
            aconst_null
            areturn
        end local 4 // int pos
        end local 3 // java.awt.Point p
        end local 2 // int y
        end local 1 // int x
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0   10     1     x  I
            0   10     2     y  I
            3   10     3     p  Ljava/awt/Point;
            6   10     4   pos  I
    MethodParameters:
      Name  Flags
      x     
      y     

  public java.awt.Rectangle getTextLocation(java.awt.font.TextHitInfo);
    descriptor: (Ljava/awt/font/TextHitInfo;)Ljava/awt/Rectangle;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // java.awt.font.TextHitInfo offset
         0: .line 4738
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getCaretPosition:()I
            invokevirtual javax.swing.text.JTextComponent.modelToView:(I)Ljava/awt/Rectangle;
            astore 2 /* r */
        start local 2 // java.awt.Rectangle r
         1: .line 4739
            aload 2 /* r */
            ifnull 7
         2: .line 4740
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getLocationOnScreen:()Ljava/awt/Point;
            astore 3 /* p */
        start local 3 // java.awt.Point p
         3: .line 4741
            aload 2 /* r */
            aload 3 /* p */
            getfield java.awt.Point.x:I
            aload 3 /* p */
            getfield java.awt.Point.y:I
            invokevirtual java.awt.Rectangle.translate:(II)V
        end local 3 // java.awt.Point p
         4: .line 4743
            goto 7
        end local 2 // java.awt.Rectangle r
      StackMap locals:
      StackMap stack: javax.swing.text.BadLocationException
         5: pop
         6: .line 4744
            aconst_null
            astore 2 /* r */
        start local 2 // java.awt.Rectangle r
         7: .line 4747
      StackMap locals: java.awt.Rectangle
      StackMap stack:
            aload 2 /* r */
            ifnonnull 9
         8: .line 4748
            new java.awt.Rectangle
            dup
            invokespecial java.awt.Rectangle.<init>:()V
            astore 2 /* r */
         9: .line 4750
      StackMap locals:
      StackMap stack:
            aload 2 /* r */
            areturn
        end local 2 // java.awt.Rectangle r
        end local 1 // java.awt.font.TextHitInfo offset
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0   10     1  offset  Ljava/awt/font/TextHitInfo;
            1    5     2       r  Ljava/awt/Rectangle;
            7   10     2       r  Ljava/awt/Rectangle;
            3    4     3       p  Ljava/awt/Point;
      Exception table:
        from    to  target  type
           0     4       5  Class javax.swing.text.BadLocationException
    MethodParameters:
        Name  Flags
      offset  

  public java.text.AttributedCharacterIterator getSelectedText(java.text.AttributedCharacterIterator$Attribute[]);
    descriptor: ([Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/text/AttributedCharacterIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // java.text.AttributedCharacterIterator$Attribute[] attributes
         0: .line 4755
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            invokevirtual javax.swing.text.JTextComponent.getSelectedText:()Ljava/lang/String;
            astore 2 /* selection */
        start local 2 // java.lang.String selection
         1: .line 4756
            aload 2 /* selection */
            ifnull 3
         2: .line 4757
            new java.text.AttributedString
            dup
            aload 2 /* selection */
            invokespecial java.text.AttributedString.<init>:(Ljava/lang/String;)V
            invokevirtual java.text.AttributedString.getIterator:()Ljava/text/AttributedCharacterIterator;
            areturn
         3: .line 4759
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.String selection
        end local 1 // java.text.AttributedCharacterIterator$Attribute[] attributes
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0    4     1  attributes  [Ljava/text/AttributedCharacterIterator$Attribute;
            1    4     2   selection  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      attributes  

  public void changedUpdate(javax.swing.event.DocumentEvent);
    descriptor: (Ljavax/swing/event/DocumentEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // javax.swing.event.DocumentEvent e
         0: .line 4766
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aconst_null
            dup_x1
            putfield javax.swing.text.JTextComponent.latestCommittedTextEnd:Ljavax/swing/text/Position;
            putfield javax.swing.text.JTextComponent.latestCommittedTextStart:Ljavax/swing/text/Position;
         1: .line 4767
            return
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0    2     1     e  Ljavax/swing/event/DocumentEvent;
    MethodParameters:
      Name  Flags
      e     

  public void insertUpdate(javax.swing.event.DocumentEvent);
    descriptor: (Ljavax/swing/event/DocumentEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // javax.swing.event.DocumentEvent e
         0: .line 4770
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aconst_null
            dup_x1
            putfield javax.swing.text.JTextComponent.latestCommittedTextEnd:Ljavax/swing/text/Position;
            putfield javax.swing.text.JTextComponent.latestCommittedTextStart:Ljavax/swing/text/Position;
         1: .line 4771
            return
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0    2     1     e  Ljavax/swing/event/DocumentEvent;
    MethodParameters:
      Name  Flags
      e     

  public void removeUpdate(javax.swing.event.DocumentEvent);
    descriptor: (Ljavax/swing/event/DocumentEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
        start local 1 // javax.swing.event.DocumentEvent e
         0: .line 4774
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aload 0 /* this */
            getfield javax.swing.text.JTextComponent$InputMethodRequestsHandler.this$0:Ljavax/swing/text/JTextComponent;
            aconst_null
            dup_x1
            putfield javax.swing.text.JTextComponent.latestCommittedTextEnd:Ljavax/swing/text/Position;
            putfield javax.swing.text.JTextComponent.latestCommittedTextStart:Ljavax/swing/text/Position;
         1: .line 4775
            return
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.JTextComponent$InputMethodRequestsHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/JTextComponent$InputMethodRequestsHandler;
            0    2     1     e  Ljavax/swing/event/DocumentEvent;
    MethodParameters:
      Name  Flags
      e     
}
SourceFile: "JTextComponent.java"
NestHost: javax.swing.text.JTextComponent
InnerClasses:
  public Attribute = java.text.AttributedCharacterIterator$Attribute of java.text.AttributedCharacterIterator
  InputMethodRequestsHandler = javax.swing.text.JTextComponent$InputMethodRequestsHandler of javax.swing.text.JTextComponent