This class implements a bare FSExtension - subclassing from this will help
prevent errors caused by not throwing FSUnsupportedException from empty
set/getVar and callFunction methods.
Calls a function in the script - note that if the function is not defined calls
will be made to the subclass callFunction methods - therefore this method should
be used with caution from within an overriden callFunction.
cont() -
Method in class murlen.util.fscript.FScript
Continues execution from current point - only really
useful in a document processing application where you may
wish to add code, execute, add some more code..etc..
ReflectionExtension - general extension for object access where either
the class handles the processing (if it implements FSExtension),
or reflection is used.
Gets a variable in script space note that if the varialble is not defined in the
script, calls will be made to subclass getVar methods - therefore this method
should be used with caution from within an overriden getVar.
set the exception handler routine which should be called for all exceptions caused by the
referenced getter and setter methods (not the exceptions while trying to call, but only the
exceptions thrown by the called code).
Sets a variable in script space = the value passed in - the variable
must be have the correct type - note that if the varialble is not defined in the
script, calls will be made to subclass setVar methods - therefore this method
should be used with caution from within an overriden setVar.