* @see org.directwebremoting.extend.Module#getMethod(java.lang.String, java.lang.Class<?>[])
*/
public MethodDeclaration getMethod(String methodName, Class<?>... parameterTypes) throws NoSuchMethodException, SecurityException
{
Method method = checkProxiedMethod(creator.getType().getMethod(methodName, parameterTypes));
return new MethodDeclaration(method);
}