Package edu.umd.cs.findbugs.ba.bcp
Interface Variable
-
- All Known Implementing Classes:
FieldVariable
,LocalVariable
,LongOrDoubleLocalVariable
public interface Variable
A Variable is either a LocalVariable or a FieldVariable. The only functinality of a Variable is to determine whether it is the same as some other Variable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
sameAs(Variable other)
Determine if the given Variable is the same as this one.
-
-
-
Method Detail
-
sameAs
boolean sameAs(Variable other)
Determine if the given Variable is the same as this one.
-
-