result = EnvelopeConstants.verbDispatchClassMethodXML;
}
MInstanceMethod[] instancemethods = classinfo.getInstancemethods();
for (int i=0; i<instancemethods.length && result==-1; i++) {
MInstanceMethod method = instancemethods[i];
if(method.getName().equalsIgnoreCase(methodName)) {
if (method.getSpecial() != null && method.getSpecial().equalsIgnoreCase("constructor")) {
result = EnvelopeConstants.verbDispatchNewInstanceMethodXML;
} else {
result = EnvelopeConstants.verbDispatchInstanceMethodXML;
}
}