All Packages Class Hierarchy This Package Previous Next Index
Class Jaja.LocalUninitializedEnvironment
java.lang.Object
|
+----Jaja.Jaja
|
+----Jaja.Entity
|
+----Jaja.Environment
|
+----Jaja.LocalUninitializedEnvironment
- public class LocalUninitializedEnvironment
- extends Environment
This class allows to introduce uninitialized local variables ie
variables that cannot be read before being initialized. The initial
Java value used to represent a non initialized Jaja variable is
the null value.
-
name
-
-
value
-
-
LocalUninitializedEnvironment(String[], Environment)
-
-
lookup(String)
- This method look for the value bound to a given variable.
-
update(String, Value)
- This method updates in place the value bound to a given variable.
name
public String name[]
value
public Value value[]
LocalUninitializedEnvironment
public LocalUninitializedEnvironment(String n[],
Environment r)
lookup
public Value lookup(String n)
- This method look for the value bound to a given variable.
- Overrides:
- lookup in class Environment
update
public Value update(String n,
Value v)
- This method updates in place the value bound to a given variable.
- Overrides:
- update in class Environment
All Packages Class Hierarchy This Package Previous Next Index