本文整理汇总了C#中biz.ritter.javapi.getMethod方法的典型用法代码示例。如果您正苦于以下问题:C# biz.ritter.javapi.getMethod方法的具体用法?C# biz.ritter.javapi.getMethod怎么用?C# biz.ritter.javapi.getMethod使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类biz.ritter.javapi
的用法示例。
在下文中一共展示了biz.ritter.javapi.getMethod方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: setWriteMethod
void setWriteMethod(java.lang.Class beanClass, String setterName)
{
//throws IntrospectionException {
java.lang.reflect.Method writeMethod = null;
try
{
if (getter != null)
{
writeMethod = beanClass.getMethod(setterName,
new java.lang.Class[] { getter.getReturnType() });
}
else
{
java.lang.Class clazz = beanClass;
java.lang.reflect.Method[] methods = null;
while (clazz != null && writeMethod == null)
{
methods = clazz.getDeclaredMethods();
foreach (java.lang.reflect.Method method in methods)
{
if (setterName.equals(method.getName()))
{
if (method.getParameterTypes().Length == 1)
{
writeMethod = method;
break;
}
}
}
clazz = clazz.getSuperclass();
}
}
}
catch (java.lang.Exception e)
{
throw new IntrospectionException(e.getLocalizedMessage());
}
catch (System.Exception e)
{
throw new IntrospectionException(e.Message);
}
if (writeMethod == null)
{
throw new IntrospectionException("Method not found: " + setterName); //$NON-NLS-1$
}
setWriteMethod(writeMethod);
}
示例2: setReadMethod
void setReadMethod(java.lang.Class beanClass, String getterName)
{
//throws IntrospectionException {
try
{
java.lang.reflect.Method readMethod = beanClass.getMethod(getterName, new java.lang.Class[] { });
setReadMethod(readMethod);
}
catch (java.lang.Exception e)
{
throw new IntrospectionException(e.getLocalizedMessage());
}
catch (System.Exception e)
{
throw new IntrospectionException(e.getMessage());
}
}