public class android.text.style.BulletSpan implements android.text.style.LeadingMarginSpan, android.text.ParcelableSpan
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.text.style.BulletSpan
  super_class: java.lang.Object
{
  private static final int STANDARD_BULLET_RADIUS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

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

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

  private final int mGapWidth;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int mBulletRadius;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private android.graphics.Path mBulletPath;
    descriptor: Landroid/graphics/Path;
    flags: (0x0002) ACC_PRIVATE

  private final int mColor;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean mWantColor;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 85
            aload 0 /* this */
            iconst_2
            iconst_0
            iconst_0
            iconst_4
            invokespecial android.text.style.BulletSpan.<init>:(IIZI)V
         1: .line 86
            return
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/text/style/BulletSpan;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.text.style.BulletSpan this
        start local 1 // int gapWidth
         0: .line 94
            aload 0 /* this */
            iload 1 /* gapWidth */
            iconst_0
            iconst_0
            iconst_4
            invokespecial android.text.style.BulletSpan.<init>:(IIZI)V
         1: .line 95
            return
        end local 1 // int gapWidth
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/text/style/BulletSpan;
            0    2     1  gapWidth  I
    MethodParameters:
          Name  Flags
      gapWidth  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // android.text.style.BulletSpan this
        start local 1 // int gapWidth
        start local 2 // int color
         0: .line 105
            aload 0 /* this */
            iload 1 /* gapWidth */
            iload 2 /* color */
            iconst_1
            iconst_4
            invokespecial android.text.style.BulletSpan.<init>:(IIZI)V
         1: .line 106
            return
        end local 2 // int color
        end local 1 // int gapWidth
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/text/style/BulletSpan;
            0    2     1  gapWidth  I
            0    2     2     color  I
    MethodParameters:
          Name  Flags
      gapWidth  
      color     

  public void <init>(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // android.text.style.BulletSpan this
        start local 1 // int gapWidth
        start local 2 // int color
        start local 3 // int bulletRadius
         0: .line 117
            aload 0 /* this */
            iload 1 /* gapWidth */
            iload 2 /* color */
            iconst_1
            iload 3 /* bulletRadius */
            invokespecial android.text.style.BulletSpan.<init>:(IIZI)V
         1: .line 118
            return
        end local 3 // int bulletRadius
        end local 2 // int color
        end local 1 // int gapWidth
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Landroid/text/style/BulletSpan;
            0    2     1      gapWidth  I
            0    2     2         color  I
            0    2     3  bulletRadius  I
    MethodParameters:
              Name  Flags
      gapWidth      
      color         
      bulletRadius  

  private void <init>(int, int, boolean, int);
    descriptor: (IIZI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // android.text.style.BulletSpan this
        start local 1 // int gapWidth
        start local 2 // int color
        start local 3 // boolean wantColor
        start local 4 // int bulletRadius
         0: .line 120
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 76
            aload 0 /* this */
            aconst_null
            putfield android.text.style.BulletSpan.mBulletPath:Landroid/graphics/Path;
         2: .line 122
            aload 0 /* this */
            iload 1 /* gapWidth */
            putfield android.text.style.BulletSpan.mGapWidth:I
         3: .line 123
            aload 0 /* this */
            iload 4 /* bulletRadius */
            putfield android.text.style.BulletSpan.mBulletRadius:I
         4: .line 124
            aload 0 /* this */
            iload 2 /* color */
            putfield android.text.style.BulletSpan.mColor:I
         5: .line 125
            aload 0 /* this */
            iload 3 /* wantColor */
            putfield android.text.style.BulletSpan.mWantColor:Z
         6: .line 126
            return
        end local 4 // int bulletRadius
        end local 3 // boolean wantColor
        end local 2 // int color
        end local 1 // int gapWidth
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Landroid/text/style/BulletSpan;
            0    7     1      gapWidth  I
            0    7     2         color  I
            0    7     3     wantColor  Z
            0    7     4  bulletRadius  I
    MethodParameters:
              Name  Flags
      gapWidth      
      color         
      wantColor     
      bulletRadius  

  public void <init>(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.text.style.BulletSpan this
        start local 1 // android.os.Parcel src
         0: .line 131
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 76
            aload 0 /* this */
            aconst_null
            putfield android.text.style.BulletSpan.mBulletPath:Landroid/graphics/Path;
         2: .line 132
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.text.style.BulletSpan.mGapWidth:I
         3: .line 133
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual android.os.Parcel.readInt:()I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: android.text.style.BulletSpan android.os.Parcel
      StackMap stack: android.text.style.BulletSpan
         4: iconst_0
      StackMap locals: android.text.style.BulletSpan android.os.Parcel
      StackMap stack: android.text.style.BulletSpan int
         5: putfield android.text.style.BulletSpan.mWantColor:Z
         6: .line 134
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.text.style.BulletSpan.mColor:I
         7: .line 135
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.text.style.BulletSpan.mBulletRadius:I
         8: .line 136
            return
        end local 1 // android.os.Parcel src
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Landroid/text/style/BulletSpan;
            0    9     1   src  Landroid/os/Parcel;
    MethodParameters:
      Name  Flags
      src   

  public int getSpanTypeId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 140
            aload 0 /* this */
            invokevirtual android.text.style.BulletSpan.getSpanTypeIdInternal:()I
            ireturn
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/style/BulletSpan;

  public int getSpanTypeIdInternal();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 146
            bipush 8
            ireturn
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/style/BulletSpan;

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 151
            iconst_0
            ireturn
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/style/BulletSpan;

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.text.style.BulletSpan this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 156
            aload 0 /* this */
            aload 1 /* dest */
            iload 2 /* flags */
            invokevirtual android.text.style.BulletSpan.writeToParcelInternal:(Landroid/os/Parcel;I)V
         1: .line 157
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/text/style/BulletSpan;
            0    2     1   dest  Landroid/os/Parcel;
            0    2     2  flags  I
    MethodParameters:
       Name  Flags
      dest   
      flags  

  public void writeToParcelInternal(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.text.style.BulletSpan this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 162
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mGapWidth:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         1: .line 163
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mWantColor:Z
            ifeq 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: android.os.Parcel
         2: iconst_0
      StackMap locals: android.text.style.BulletSpan android.os.Parcel int
      StackMap stack: android.os.Parcel int
         3: invokevirtual android.os.Parcel.writeInt:(I)V
         4: .line 164
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mColor:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         5: .line 165
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletRadius:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         6: .line 166
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Landroid/text/style/BulletSpan;
            0    7     1   dest  Landroid/os/Parcel;
            0    7     2  flags  I
    MethodParameters:
       Name  Flags
      dest   
      flags  

  public int getLeadingMargin(boolean);
    descriptor: (Z)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.text.style.BulletSpan this
        start local 1 // boolean first
         0: .line 170
            iconst_2
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletRadius:I
            imul
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mGapWidth:I
            iadd
            ireturn
        end local 1 // boolean first
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/text/style/BulletSpan;
            0    1     1  first  Z
    MethodParameters:
       Name  Flags
      first  

  public int getGapWidth();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 179
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mGapWidth:I
            ireturn
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/style/BulletSpan;

  public int getBulletRadius();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 188
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletRadius:I
            ireturn
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/style/BulletSpan;

  public int getColor();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.style.BulletSpan this
         0: .line 197
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mColor:I
            ireturn
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/style/BulletSpan;

  public void drawLeadingMargin(android.graphics.Canvas, android.graphics.Paint, int, int, int, int, int, java.lang.CharSequence, int, int, boolean, android.text.Layout);
    descriptor: (Landroid/graphics/Canvas;Landroid/graphics/Paint;IIIIILjava/lang/CharSequence;IIZLandroid/text/Layout;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=17, args_size=13
        start local 0 // android.text.style.BulletSpan this
        start local 1 // android.graphics.Canvas canvas
        start local 2 // android.graphics.Paint paint
        start local 3 // int x
        start local 4 // int dir
        start local 5 // int top
        start local 6 // int baseline
        start local 7 // int bottom
        start local 8 // java.lang.CharSequence text
        start local 9 // int start
        start local 10 // int end
        start local 11 // boolean first
        start local 12 // android.text.Layout layout
         0: .line 205
            aload 8 /* text */
            checkcast android.text.Spanned
            aload 0 /* this */
            invokeinterface android.text.Spanned.getSpanStart:(Ljava/lang/Object;)I
            iload 9 /* start */
            if_icmpne 25
         1: .line 206
            aload 2 /* paint */
            invokevirtual android.graphics.Paint.getStyle:()Landroid/graphics/Paint$Style;
            astore 13 /* style */
        start local 13 // android.graphics.Paint$Style style
         2: .line 207
            iconst_0
            istore 14 /* oldcolor */
        start local 14 // int oldcolor
         3: .line 209
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mWantColor:Z
            ifeq 6
         4: .line 210
            aload 2 /* paint */
            invokevirtual android.graphics.Paint.getColor:()I
            istore 14 /* oldcolor */
         5: .line 211
            aload 2 /* paint */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mColor:I
            invokevirtual android.graphics.Paint.setColor:(I)V
         6: .line 214
      StackMap locals: android.graphics.Paint$Style int
      StackMap stack:
            aload 2 /* paint */
            getstatic android.graphics.Paint$Style.FILL:Landroid/graphics/Paint$Style;
            invokevirtual android.graphics.Paint.setStyle:(Landroid/graphics/Paint$Style;)V
         7: .line 216
            aload 12 /* layout */
            ifnull 10
         8: .line 220
            aload 12 /* layout */
            iload 9 /* start */
            invokevirtual android.text.Layout.getLineForOffset:(I)I
            istore 15 /* line */
        start local 15 // int line
         9: .line 221
            iload 7 /* bottom */
            aload 12 /* layout */
            iload 15 /* line */
            invokevirtual android.text.Layout.getLineExtra:(I)I
            isub
            istore 7 /* bottom */
        end local 15 // int line
        10: .line 224
      StackMap locals:
      StackMap stack:
            iload 5 /* top */
            iload 7 /* bottom */
            iadd
            i2f
            fconst_2
            fdiv
            fstore 15 /* yPosition */
        start local 15 // float yPosition
        11: .line 225
            iload 3 /* x */
            iload 4 /* dir */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletRadius:I
            imul
            iadd
            i2f
            fstore 16 /* xPosition */
        start local 16 // float xPosition
        12: .line 227
            aload 1 /* canvas */
            invokevirtual android.graphics.Canvas.isHardwareAccelerated:()Z
            ifeq 21
        13: .line 228
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletPath:Landroid/graphics/Path;
            ifnonnull 16
        14: .line 229
            aload 0 /* this */
            new android.graphics.Path
            dup
            invokespecial android.graphics.Path.<init>:()V
            putfield android.text.style.BulletSpan.mBulletPath:Landroid/graphics/Path;
        15: .line 230
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletPath:Landroid/graphics/Path;
            fconst_0
            fconst_0
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletRadius:I
            i2f
            getstatic android.graphics.Path$Direction.CW:Landroid/graphics/Path$Direction;
            invokevirtual android.graphics.Path.addCircle:(FFFLandroid/graphics/Path$Direction;)V
        16: .line 233
      StackMap locals: float float
      StackMap stack:
            aload 1 /* canvas */
            invokevirtual android.graphics.Canvas.save:()I
            pop
        17: .line 234
            aload 1 /* canvas */
            fload 16 /* xPosition */
            fload 15 /* yPosition */
            invokevirtual android.graphics.Canvas.translate:(FF)V
        18: .line 235
            aload 1 /* canvas */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletPath:Landroid/graphics/Path;
            aload 2 /* paint */
            invokevirtual android.graphics.Canvas.drawPath:(Landroid/graphics/Path;Landroid/graphics/Paint;)V
        19: .line 236
            aload 1 /* canvas */
            invokevirtual android.graphics.Canvas.restore:()V
        20: .line 237
            goto 22
        21: .line 238
      StackMap locals:
      StackMap stack:
            aload 1 /* canvas */
            fload 16 /* xPosition */
            fload 15 /* yPosition */
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mBulletRadius:I
            i2f
            aload 2 /* paint */
            invokevirtual android.graphics.Canvas.drawCircle:(FFFLandroid/graphics/Paint;)V
        22: .line 241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.text.style.BulletSpan.mWantColor:Z
            ifeq 24
        23: .line 242
            aload 2 /* paint */
            iload 14 /* oldcolor */
            invokevirtual android.graphics.Paint.setColor:(I)V
        24: .line 245
      StackMap locals:
      StackMap stack:
            aload 2 /* paint */
            aload 13 /* style */
            invokevirtual android.graphics.Paint.setStyle:(Landroid/graphics/Paint$Style;)V
        end local 16 // float xPosition
        end local 15 // float yPosition
        end local 14 // int oldcolor
        end local 13 // android.graphics.Paint$Style style
        25: .line 247
      StackMap locals: android.text.style.BulletSpan android.graphics.Canvas android.graphics.Paint int int int int int java.lang.CharSequence int int int android.text.Layout
      StackMap stack:
            return
        end local 12 // android.text.Layout layout
        end local 11 // boolean first
        end local 10 // int end
        end local 9 // int start
        end local 8 // java.lang.CharSequence text
        end local 7 // int bottom
        end local 6 // int baseline
        end local 5 // int top
        end local 4 // int dir
        end local 3 // int x
        end local 2 // android.graphics.Paint paint
        end local 1 // android.graphics.Canvas canvas
        end local 0 // android.text.style.BulletSpan this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Landroid/text/style/BulletSpan;
            0   26     1     canvas  Landroid/graphics/Canvas;
            0   26     2      paint  Landroid/graphics/Paint;
            0   26     3          x  I
            0   26     4        dir  I
            0   26     5        top  I
            0   26     6   baseline  I
            0   26     7     bottom  I
            0   26     8       text  Ljava/lang/CharSequence;
            0   26     9      start  I
            0   26    10        end  I
            0   26    11      first  Z
            0   26    12     layout  Landroid/text/Layout;
            2   25    13      style  Landroid/graphics/Paint$Style;
            3   25    14   oldcolor  I
            9   10    15       line  I
           11   25    15  yPosition  F
           12   25    16  xPosition  F
    MethodParameters:
          Name  Flags
      canvas    
      paint     
      x         
      dir       
      top       
      baseline  
      bottom    
      text      
      start     
      end       
      first     
      layout    
}
SourceFile: "BulletSpan.java"
InnerClasses:
  public final Style = android.graphics.Paint$Style of android.graphics.Paint
  public final Direction = android.graphics.Path$Direction of android.graphics.Path