接口 BamLocationDependent<ContentT extends AbstractState<ContentT>>
-
- 类型参数:
ContentT- The content of the jvm states. For example, this can be aSetAbstractStateof taints for taint analysis or aValueAbstractStatefor value analysis.
public interface BamLocationDependent<ContentT extends AbstractState<ContentT>>If the usage of anAbstractStatedepends on the specific BAM cache entry it belongs to, it should implementBamLocationDependentto link it to its source reached set.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 ProgramLocationDependentReachedSet<JvmAbstractState<ContentT>>getSourceReachedSet()Returns the reached set the abstract state belongs to.voidsetSourceReachedSet(ProgramLocationDependentReachedSet<JvmAbstractState<ContentT>> sourceReachedSet)Sets the reached set the abstract state belongs to.
-
-
-
方法详细资料
-
getSourceReachedSet
ProgramLocationDependentReachedSet<JvmAbstractState<ContentT>> getSourceReachedSet()
Returns the reached set the abstract state belongs to.
-
setSourceReachedSet
void setSourceReachedSet(ProgramLocationDependentReachedSet<JvmAbstractState<ContentT>> sourceReachedSet)
Sets the reached set the abstract state belongs to.
-
-