In this example, TableToExtend is the table and delete, canSubmitToWorkflow, and caption are methods that can be wrapped in the table.
[ExtensionOf(tablestr(TableToExtend))]
final class TableToExtend_Extension
{
public void delete()
{
next delete();
//...
}
public boolean canSubmitToWorkflow(str _workflowType)
{
boolean ret;
//...
ret = next canSubmitToWorkflow(_workflowType);
//...
return ret;
}
public str caption()
{
str ret;
//...
ret = next caption();
//...
return ret;
}
}