本文整理汇总了Java中java.beans.PropertyDescriptor.equals方法的典型用法代码示例。如果您正苦于以下问题:Java PropertyDescriptor.equals方法的具体用法?Java PropertyDescriptor.equals怎么用?Java PropertyDescriptor.equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.beans.PropertyDescriptor
的用法示例。
在下文中一共展示了PropertyDescriptor.equals方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: test
import java.beans.PropertyDescriptor; //导入方法依赖的package包/类
private static void test(Class type) {
for (PropertyDescriptor pd : BeanUtils.getPropertyDescriptors(type)) {
PropertyDescriptor pdCopy = create(pd);
if (pdCopy != null) {
// XXX - hack! The Introspector will set the bound property
// since it assumes that propertyChange event set descriptors
// infers that all the properties are bound
pdCopy.setBound(pd.isBound());
String name = pd.getName();
System.out.println(" - " + name);
if (!compare(pd, pdCopy))
throw new Error("property delegates are not equal");
if (!pd.equals(pdCopy))
throw new Error("equals() failed");
if (pd.hashCode() != pdCopy.hashCode())
throw new Error("hashCode() failed");
}
}
}
示例2: test
import java.beans.PropertyDescriptor; //导入方法依赖的package包/类
private static void test(Class type, PropertyDescriptor property) {
for (PropertyDescriptor pd : BeanUtils.getPropertyDescriptors(type)) {
boolean forward = pd.equals(property);
boolean backward = property.equals(pd);
if (forward || backward) {
if (forward && backward)
return;
throw new Error("illegal comparison of properties");
}
}
throw new Error("could not find property: " + property.getName());
}