1 55 56 package org.apache.commons.el; 57 58 import java.beans.PropertyDescriptor ; 59 import java.lang.reflect.Method ; 60 61 75 76 public class BeanInfoProperty 77 { 78 83 Method mReadMethod; 84 public Method getReadMethod () 85 { return mReadMethod; } 86 87 90 Method mWriteMethod; 91 public Method getWriteMethod () 92 { return mWriteMethod; } 93 94 97 PropertyDescriptor mPropertyDescriptor; 98 public PropertyDescriptor getPropertyDescriptor () 99 { return mPropertyDescriptor; } 100 101 106 public BeanInfoProperty (Method pReadMethod, 107 Method pWriteMethod, 108 PropertyDescriptor pPropertyDescriptor) 109 { 110 mReadMethod = pReadMethod; 111 mWriteMethod = pWriteMethod; 112 mPropertyDescriptor = pPropertyDescriptor; 113 } 114 115 } 117 | Popular Tags |