IspecModelRef

IspecRef is a class used to create references to IspecModel objects. It is a sub-class of ObjectRef. It uses the methods, getIspec() and setIspec() to specify the object to which it refers. Some methods, such as transaction and simpleTransaction, take IspecModelRefs as parameters, so that they can pass back an IspecModel object.

The following example illustrates how to use an IspecModelRef to get a fireup Ispec from the system. Use this to replace the "hello" line in the LINCEnvironment example, when you want to get a fireup IspecModel object.

fireupRef  = linc.makeIspecModelRef(); linc.hello (fireupRef);
IspecModel fireup = firupRef.getIspec();

I.

Refer to IspecModelRef in the Agile Business Suite Component Enabler Class Reference Summary for more information on the parameters, methods, and syntax of IspecModelRef.