background image
<< Exceptions Variable | Appendix B. Troubleshooting >>
<< Exceptions Variable | Appendix B. Troubleshooting >>

ParameterValuesAsSumofString Variable

138
Appendix A - Template Replacement Variables
<<!ParameterValuesAsSumofString
s!>>
Parameter values are converted to
sum of strings.
Example:
values[0] + " " + values[1] + " "
MethodBody
MethodBodyWithoutExce
ptions
MethodBodyWithoutRetu
rnValue
<<!ConvertStringValueToReturnTy
pe!>>
Converts the exptected return value
read from the lookup table to the
return value type.
Example:
retval = new
java.math.BigDecimal(sRetval);
MethodBody
MethodBodyWithoutExce
ptions
<<!CatchBlocks!>>
Catch block for the exception (any
class extending java.lang.Throwable)
that the method throws. It is used to
throw the exception that lookup table
instructs.
Example:
catch (java.rmi.RemoteException e)
{
throw e;
}
catch
(javax.naming.NamingException e)
{
throw e;
}
MethodBody
MethodBodyWithoutRetu
rnValue
<<!ReasonForNoLookupCodeGene
ration!>>
Describes why lookup code was not
generated.
For example:
//This Method does not have
parameters. Lookup code cannot be
generated.
//Insert code here to add logic.
MethodBodyWithoutLook
Up
Variable
Description
Template