当前位置: 首页>>代码示例>>C#>>正文


C# biz.ritter.javapi.getParameterTypes方法代码示例

本文整理汇总了C#中biz.ritter.javapi.getParameterTypes方法的典型用法代码示例。如果您正苦于以下问题:C# biz.ritter.javapi.getParameterTypes方法的具体用法?C# biz.ritter.javapi.getParameterTypes怎么用?C# biz.ritter.javapi.getParameterTypes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在biz.ritter.javapi的用法示例。


在下文中一共展示了biz.ritter.javapi.getParameterTypes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: setWriteMethod

 public void setWriteMethod(java.lang.reflect.Method setter)
 {
     //throws IntrospectionException {
     if (setter != null)
     {
         int modifiers = setter.getModifiers();
         if (!java.lang.reflect.Modifier.isPublic(modifiers))
         {
             throw new IntrospectionException("Modifier for setter method should be public.");//Messages.getString("beans.05")); //$NON-NLS-1$
         }
         java.lang.Class[] parameterTypes = setter.getParameterTypes();
         if (parameterTypes.Length != 1)
         {
             throw new IntrospectionException("Number of parameters in setter method is not equal to 1.");//Messages.getString("beans.06")); //$NON-NLS-1$
         }
         java.lang.Class parameterType = parameterTypes[0];
         java.lang.Class propertyType = getPropertyType();
         if (propertyType != null && !propertyType.equals(parameterType))
         {
             throw new IntrospectionException("Parameter type in setter method does not corresponds to predefined.");//Messages.getString("beans.07")); //$NON-NLS-1$
         }
     }
     this.setter = setter;
 }
开发者ID:gadfly,项目名称:nofs,代码行数:24,代码来源:java.beans.PropertyDescriptor.cs

示例2: 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;
 }
开发者ID:gadfly,项目名称:nofs,代码行数:28,代码来源:java.beans.PropertyDescriptor.cs


注:本文中的biz.ritter.javapi.getParameterTypes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。