Interface IVariableProvider
public interface IVariableProvider
A provider of
variables.-
Method Summary
Modifier and TypeMethodDescriptionget(int id) Retrieve a variable by id.getContaining(int id) Retrieve a variable whose id "contains" the provided id.
-
Method Details
-
get
Retrieve a variable by id.- Parameters:
id- variable id- Returns:
- matching variable, or null if none exists
-
getContaining
Retrieve a variable whose id "contains" the provided id. (The definition of "contains" is defined by the implementation.)- Parameters:
id- contained variable id- Returns:
- containing variable, or null if none exists
-