int numParams = _parameters.size();
// Update the load instructions of the Params, so that they
// are loaded from the method parameters.
for (int i = 0; i < numParams; i++) {
Param param = (Param)_parameters.elementAt(i);
param.setLoadInstruction(namedMethodGen.loadParameter(i));
}
// Translate all children except the parameters.
// The parameters are translated in CallTemplates if necessary.
translateContentsWithoutParams(classGen, methodGen);
}