类 ClassLoaderModel
- java.lang.Object
-
- proguard.evaluation.value.object.model.ClassLoaderModel
-
- 所有已实现的接口:
Model,ReflectiveModel<ClassLoaderModel>
public class ClassLoaderModel extends java.lang.Object implements ReflectiveModel<ClassLoaderModel>
-
-
字段概要
-
从接口继承的字段 proguard.evaluation.value.object.model.reflective.ReflectiveModel
log
-
-
构造器概要
构造器 构造器 说明 ClassLoaderModel()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 @NotNull java.lang.StringgetType()Returns the type of the modeled class.MethodResultinit(MethodExecutionInfo methodExecutionInfo, ValueCalculator valueCalculator)Execute a constructor call for the modeled class.-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 proguard.evaluation.value.object.model.reflective.ReflectiveModel
invoke, invokeStatic
-
-
-
-
方法详细资料
-
getType
@NotNull public @NotNull java.lang.String getType()
从接口复制的说明:ModelReturns the type of the modeled class.
-
init
public MethodResult init(MethodExecutionInfo methodExecutionInfo, ValueCalculator valueCalculator)
从接口复制的说明:ModelExecute a constructor call for the modeled class.It is suggested to add logic to allow running this only on a dummy model without any state.
- 指定者:
init在接口中Model- 指定者:
init在接口中ReflectiveModel<ClassLoaderModel>- 参数:
methodExecutionInfo- execution info of the target method.valueCalculator- the value calculator that should be used to create any value in the result.- 返回:
- the result of the method invocation. Since it's a constructor invocation the return value of the result is expected to be empty and the constructed value should be set as the updated instance.
-
-