soot
Interface ValueBox
- All Known Implementing Classes:
- AbstractValueBox
- public interface ValueBox
A box which can contain values.
- See Also:
Value
Method Summary |
boolean |
canContainValue(Value value)
Returns true if the given Value fits in this box. |
Value |
getValue()
Returns the value contained in this box. |
void |
setValue(Value value)
Sets the value contained in this box as given. |
setValue
public void setValue(Value value)
- Sets the value contained in this box as given. Subject to canContainValue() checks.
getValue
public Value getValue()
- Returns the value contained in this box.
canContainValue
public boolean canContainValue(Value value)
- Returns true if the given Value fits in this box.