Class StackMapTableAttribute

java.lang.Object
proguard.util.SimpleProcessable
proguard.classfile.attribute.Attribute
proguard.classfile.attribute.preverification.StackMapTableAttribute
All Implemented Interfaces:
Serializable, Processable

public class StackMapTableAttribute extends Attribute
This Attribute represents a stack map table attribute.
See Also:
  • Field Details

    • u2stackMapFramesCount

      public int u2stackMapFramesCount
    • stackMapFrames

      public StackMapFrame[] stackMapFrames
  • Constructor Details

    • StackMapTableAttribute

      public StackMapTableAttribute()
      Creates an uninitialized StackMapTableAttribute.
    • StackMapTableAttribute

      public StackMapTableAttribute(StackMapFrame[] stackMapFrames)
      Creates a StackMapTableAttribute with the given stack map frames.
    • StackMapTableAttribute

      public StackMapTableAttribute(int stackMapFramesCount, StackMapFrame[] stackMapFrames)
      Creates a StackMapTableAttribute with the given stack map frames.
  • Method Details