Package proguard.analysis.cpa.interfaces
Interface ProgramLocationDependent
-
- All Known Implementing Classes:
BamLocationDependentJvmMemoryLocation
,JvmAbstractState
,JvmMemoryLocationAbstractState
,JvmValueAbstractState
public interface ProgramLocationDependent
If anAbstractState
is program location-specific (i.e., is associated to a specific node from theCfa
), it should implementProgramLocationDependent
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JvmCfaNode
getProgramLocation()
Returns the program location.void
setProgramLocation(JvmCfaNode programLocation)
Sets the program location.
-
-
-
Method Detail
-
getProgramLocation
JvmCfaNode getProgramLocation()
Returns the program location.
-
setProgramLocation
void setProgramLocation(JvmCfaNode programLocation)
Sets the program location.
-
-