org.hecl.java |
|
Java Source File Name | Type | Comment |
HeclJavaCmd.java | Class | The HeclJavaCmd class implements the "java" command,
which can be used to access, instantiate and call methods of Java
classes.
author: David N. |
JavaCmd.java | Class | The JavaCmd class is utilized to implement Hecl
commands that can interact with Java classes. |
MethodProps.java | Class | The MethodProps class is utilized during the
instantiation of classes, where it's possible to do things like:
foo -new $bar -text "blah" -color red, where the keys are
transformed into methods like setText and setColor, and run with
the provided values. |
Reflector.java | Class | The Reflector class maps between Java types and Hecl
types in order to make it possible to call Java methods from Hecl.
author: David N. |