类 JvmCallCfaEdge
- java.lang.Object
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmCallCfaEdge
-
- 所有已实现的接口:
CallEdge,CfaEdge<JvmCfaNode>
public class JvmCallCfaEdge extends JvmCfaEdge implements CallEdge
AJvmCfaEdgerepresenting a call to another method, linking to the first node of the called method.
-
-
构造器概要
构造器 构造器 说明 JvmCallCfaEdge(JvmCfaNode source, JvmCfaNode target, Call call)Create a JVM CFA call edge.JvmCallCfaEdge(Call call)Create a disconnected JVM CFA call edge.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 CallgetCall()Get the information about the procedure call represented by the edge.MethodSignaturetargetSignature()Returns the signature of the target method.-
从类继承的方法 proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
getSource, getTarget, setSource, setTarget
-
-
-
-
构造器详细资料
-
JvmCallCfaEdge
public JvmCallCfaEdge(Call call)
Create a disconnected JVM CFA call edge.- 参数:
call- the call to a method
-
JvmCallCfaEdge
public JvmCallCfaEdge(JvmCfaNode source, JvmCfaNode target, Call call)
Create a JVM CFA call edge. Also sets it as the entering and leaving edge of the source and target nodes.- 参数:
source- the source node of the edgetarget- the target node of the edgecall- the call to a method
-
-
方法详细资料
-
targetSignature
public MethodSignature targetSignature()
从类复制的说明:JvmCfaEdgeReturns the signature of the target method. This is the current method or, for call edges, the target method of the call.- 覆盖:
targetSignature在类中JvmCfaEdge
-
-