if ( _actionOutputs != null && _actionOutputs.size() > 0 )
{
if ( xb.getClassName() == null ) xb.setClassName( JPF_ACTION_FWD_CLASSNAME );
int n = _actionOutputs.size();
SetProperty countProp = xb.addNewSetProperty();
countProp.setProperty( "actionOutputCount" );
countProp.setValue( Integer.toString( n ) );
for ( int i = 0; i < n; ++i )
{
ActionOutputModel pi = ( ActionOutputModel ) _actionOutputs.get( i );
SetProperty prop = xb.addNewSetProperty();
prop.setProperty( "actionOutput" + i );
prop.setValue( pi.getType() + '|' + pi.getNullable() + '|' + pi.getName() );
}
}
//
// "nestedReturn" is set using set-property, which requires us to override the