Record Class CallSource
java.lang.Object
java.lang.Record
pascal.taie.analysis.pta.plugin.taint.CallSource
- Record Components:
method
- the method that generates taint object at call site.indexRef
- the index of the tainted reference at the call site.type
- type of the generated taint object.
- All Implemented Interfaces:
Source
public record CallSource(JMethod method, IndexRef indexRef, Type type)
extends Record
implements Source
Represents sources which generates taint objects at method calls.
-
Constructor Summary
ConstructorDescriptionCallSource
(JMethod method, IndexRef indexRef, Type type) Creates an instance of aCallSource
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.indexRef()
Returns the value of theindexRef
record component.method()
Returns the value of themethod
record component.toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
method
Returns the value of themethod
record component.- Returns:
- the value of the
method
record component
-
indexRef
Returns the value of theindexRef
record component.- Returns:
- the value of the
indexRef
record component
-
type
Returns the value of thetype
record component.
-