Interface ScriptHelper

All Known Implementing Classes:
ScriptHelperImpl

public interface ScriptHelper
A script helper object. The OFBiz scripting framework will include an instance of this class in the script's bindings.

The scripting language will determine how the helper is used. Most languages will access it as a variable:
partyValue = ofbiz.findOne("Party");
while other languages might access it as a native method or function:
partyValue = findOne("Party");