Inserts the specified
verb into the
business object definition's verb list.
Syntax
public void insertVerb(BusObjVerb verbObj);
public void insertVerb(String verbStrng, String appSpecInfo);
Parameters
- appSpecInfo
- Is the application-specific information for the verb to be added to the
verb list.
- verbObj
- Is the verb object to be added to the verb list.
- verbStrng
- Is the name of the verb to be added to the verb list.
Exceptions
- BusObjInvalidVerbException
- Thrown if the verb that the verb object describes is a duplicate.
Notes
The insertVerb() method provides the following forms to insert a
verb object into the verb list of the business object definition in either of
the following ways:
- The first form specifies the verb to add as an initialized verb object (a
BusObjVerb instance). You can use methods of the
BusObjVerb class to initialize the verb object.
- The second form specifies the verb information, including the name and
application-specific information for the verb.
See also
removeVerb()
