|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.beans
类 PropertyDescriptor
java.lang.Object java.beans.FeatureDescriptor java.beans.PropertyDescriptor
- 直接已知子类:
- IndexedPropertyDescriptor
-
public class PropertyDescriptor
- extends FeatureDescriptor
PropertyDescriptor 描述 Java Bean 通过一对存储器方法导出的一个属性。
构造方法摘要 | |
---|---|
PropertyDescriptor(String propertyName, Class<?> beanClass) 通过调用 getFoo 和 setFoo 存储器方法,为符合标准 Java 约定的属性构造一个 PropertyDescriptor。 |
|
PropertyDescriptor(String propertyName, Class<?> beanClass, String readMethodName, String writeMethodName) 此构造方法带有一个简单属性的名称和用于读写属性的方法名称。 |
|
PropertyDescriptor(String propertyName, Method readMethod, Method writeMethod) 此构造方法带有某一简单属性的名称,以及用来读取和写入属性的 Method 对象。 |
方法摘要 | |
---|---|
PropertyEditor |
createPropertyEditor(Object bean) 使用当前属性编辑器类构造一个属性编辑器实例。 |
boolean |
equals(Object obj) 将此 PropertyDescriptor 与指定对象进行比较。 |
Class<?> |
getPropertyEditorClass() 获得已为此属性注册的任何显式 PropertyEditor Class。 |
Class<?> |
getPropertyType() 获得属性的 Class 对象。 |
Method |
getReadMethod() 获得应该用于读取属性值的方法。 |
Method |
getWriteMethod() 获得应该用于写入属性值的方法。 |
int |
hashCode() 返回对象的哈希码。 |
boolean |
isBound() 更新 "bound" 属性将导致更改该属性时激发 "PropertyChange" 事件。 |
boolean |
isConstrained() 试图更新 "Constrained" 属性将导致更改该属性时激发 "VetoableChange" 事件。 |
void |
setBound(boolean bound) 更新 "bound" 属性将导致更改该属性时激发 "PropertyChange" 事件。 |
void |
setConstrained(boolean constrained) 试图更新 "Constrained" 属性将导致更改该属性时激发 "VetoableChange" 事件。 |
void |
setPropertyEditorClass(Class<?> propertyEditorClass) 通常 PropertyEditors 是使用 PropertyEditorManager 找到的。 |
void |
setReadMethod(Method readMethod) 设置应该用于读取属性值的方法。 |
void |
setWriteMethod(Method writeMethod) 设置应该用于写入属性值的方法。 |
从类 java.beans.FeatureDescriptor 继承的方法 |
---|
attributeNames, getDisplayName, getName, getShortDescription, getValue, isExpert, isHidden, isPreferred, setDisplayName, setExpert, setHidden, setName, setPreferred, setShortDescription, setValue |
从类 java.lang.Object 继承的方法 |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
PropertyDescriptor
public PropertyDescriptor(String propertyName, Class<?> beanClass) throws IntrospectionException
-
通过调用 getFoo 和 setFoo 存储器方法,为符合标准 Java 约定的属性构造一个 PropertyDescriptor。因此如果参数 name 为 "fred",则假定 writer 方法为 "setFred",reader 方法为 "getFred"(对于 boolean 属性则为 "isFred")。注意,属性名应该以小写字母开头,而方法名称中的首写字母将是大写的。
- 参数:
-
propertyName
- 属性的编程名称。 -
beanClass
- 目标 bean 的 Class 对象。例如 sun.beans.OurButton.class。 - 抛出:
-
IntrospectionException
- 如果在内省期间发生异常。
PropertyDescriptor
public PropertyDescriptor(String propertyName, Class<?> beanClass, String readMethodName, String writeMethodName) throws IntrospectionException
-
此构造方法带有一个简单属性的名称和用于读写属性的方法名称。
- 参数:
-
propertyName
- 属性的编程名称。 -
beanClass
- 目标 bean 的 Class 对象。例如 sun.beans.OurButton.class。 -
readMethodName
- 用于读取属性值的方法的名称。如果属性是只读的,则该参数可能为 null。 -
writeMethodName
- 用于写入属性值的方法的名称。如果属性是只写的,则该参数可能为 null。 - 抛出:
-
IntrospectionException
- 如果在内省期间发生异常。
PropertyDescriptor
public PropertyDescriptor(String propertyName, Method readMethod, Method writeMethod) throws IntrospectionException
-
此构造方法带有某一简单属性的名称,以及用来读取和写入属性的 Method 对象。
- 参数:
-
propertyName
- 属性的编程名称。 -
readMethod
- 用于读取属性值的方法。如果属性是只读的,则该参数可能为 null。 -
writeMethod
- 用于写入属性值的方法。如果属性是只写的,则该参数可能为 null。 - 抛出:
-
IntrospectionException
- 如果在内省期间发生异常。
方法详细信息 |
---|
getPropertyType
public Class<?> getPropertyType()
- 获得属性的 Class 对象。
-
- 返回:
-
属性的 Java 类型信息。注意,"Class" 对象可以描述内置 Java 类型,比如 "int"。如果此属性是一个不支持非索引访问的 indexed 属性,则结果可能是 "null"。
而这里的类型是由 ReadMethod 返回的类型。
getReadMethod
public Method getReadMethod()
- 获得应该用于读取属性值的方法。
-
- 返回:
- 应该用于读取属性值的方法。如果无法读取该属性,则可能返回。
setReadMethod
public void setReadMethod(Method readMethod) throws IntrospectionException
- 设置应该用于读取属性值的方法。
-
- 参数:
-
readMethod
- 新的读取方法。 - 抛出:
-
IntrospectionException
getWriteMethod
public Method getWriteMethod()
- 获得应该用于写入属性值的方法。
-
- 返回:
- 应该用于写入属性值的方法。如果无法写入该属性,则可能返回。
setWriteMethod
public void setWriteMethod(Method writeMethod) throws IntrospectionException
- 设置应该用于写入属性值的方法。
-
- 参数:
-
writeMethod
- 新的写入方法。 - 抛出:
-
IntrospectionException