类 BootstrapMethodInfo
- java.lang.Object
-
- proguard.util.SimpleProcessable
-
- proguard.classfile.attribute.BootstrapMethodInfo
-
- 所有已实现的接口:
java.io.Serializable,Processable
public class BootstrapMethodInfo extends SimpleProcessable
Representation of a bootstrap method.- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 static intFLAG_BRIDGESstatic intFLAG_MARKERSstatic intFLAG_SERIALIZABLEintu2methodArgumentCountint[]u2methodArgumentsintu2methodHandleIndex-
从类继承的字段 proguard.util.SimpleProcessable
processingFlags, processingInfo
-
-
构造器概要
构造器 构造器 说明 BootstrapMethodInfo()Creates an uninitialized BootstrapMethodInfo.BootstrapMethodInfo(int u2methodHandleIndex, int u2methodArgumentCount, int[] u2methodArguments)Creates an initialized BootstrapMethodInfo.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidmethodArgumentsAccept(Clazz clazz, ConstantVisitor constantVisitor)Applies the given constant pool visitor to the argument constants of the bootstrap method.voidmethodHandleAccept(Clazz clazz, ConstantVisitor constantVisitor)Applies the given constant pool visitor to the method handle of the bootstrap method.-
从类继承的方法 proguard.util.SimpleProcessable
addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfo
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 proguard.util.Processable
accept
-
-
-
-
字段详细资料
-
FLAG_BRIDGES
public static final int FLAG_BRIDGES
- 另请参阅:
- 常量字段值
-
FLAG_MARKERS
public static final int FLAG_MARKERS
- 另请参阅:
- 常量字段值
-
FLAG_SERIALIZABLE
public static final int FLAG_SERIALIZABLE
- 另请参阅:
- 常量字段值
-
u2methodHandleIndex
public int u2methodHandleIndex
-
u2methodArgumentCount
public int u2methodArgumentCount
-
u2methodArguments
public int[] u2methodArguments
-
-
方法详细资料
-
methodHandleAccept
public void methodHandleAccept(Clazz clazz, ConstantVisitor constantVisitor)
Applies the given constant pool visitor to the method handle of the bootstrap method.
-
methodArgumentsAccept
public void methodArgumentsAccept(Clazz clazz, ConstantVisitor constantVisitor)
Applies the given constant pool visitor to the argument constants of the bootstrap method.
-
-