Class Summary | |
---|---|
Block |
A Block is the fundamental unit of parsed and ready to execute sleep code. To execute a block of code: ScriptInstance script; // asume Block code; // assume ScriptEnvironment env = script.getEnvironment(); Scalar value = SleepUtils.runCode(code, env); The variable value would contain the return value after the block was executed. |
GeneratedSteps | A class providing static methods for constructing an atomic step of a specific type |
ObjectUtilities | This class is sort of the center of the HOES universe containing several methods for mapping between Sleep and Java and resolving which mappings make sense. |
ProxyInterface | This class is used to mock an instance of a class that implements a specified Java interface using a Sleep function. |
Step | The root of all atomic steps. |