本文整理汇总了C#中biz.ritter.javapi.getReturnType方法的典型用法代码示例。如果您正苦于以下问题:C# biz.ritter.javapi.getReturnType方法的具体用法?C# biz.ritter.javapi.getReturnType怎么用?C# biz.ritter.javapi.getReturnType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类biz.ritter.javapi
的用法示例。
在下文中一共展示了biz.ritter.javapi.getReturnType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: setReadMethod
public void setReadMethod(java.lang.reflect.Method getter)
{
//throws IntrospectionException {
if (getter != null)
{
int modifiers = getter.getModifiers();
if (!java.lang.reflect.Modifier.isPublic(modifiers))
{
throw new IntrospectionException("Modifier for getter method should be public.");//Messages.getString("beans.0A")); //$NON-NLS-1$
}
java.lang.Class[] parameterTypes = getter.getParameterTypes();
if (parameterTypes.Length != 0)
{
throw new IntrospectionException("Number of parameters in getter method is not equal to 0.");//Messages.getString("beans.08")); //$NON-NLS-1$
}
java.lang.Class returnType = getter.getReturnType();
if (returnType.equals(java.lang.Void.TYPE))
{
throw new IntrospectionException("{0} does not return <void>");//Messages.getString("beans.33")); //$NON-NLS-1$
}
java.lang.Class propertyType = getPropertyType();
if ((propertyType != null) && !returnType.equals(propertyType))
{
throw new IntrospectionException("Parameter type in getter method does not corresponds to predefined.");//Messages.getString("beans.09")); //$NON-NLS-1$
}
}
this.getter = getter;
}