public static void main(final String[] args) throws Exception {
final BeanInfo beanInfo = Introspector.getBeanInfo(Sub.class);
final PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();
for (final PropertyDescriptor pd : pds) {
System.err.println("pd = " + pd);
final Class<?> type = pd.getPropertyType();
if (type != Class.class && type != Long[].class
&& type != Integer.class && type != Enum.class) {
throw new RuntimeException(Arrays.toString(pds));
}
}
}
TestMethodOrderDependence.java 文件源码
java
阅读 13
收藏 0
点赞 0
评论 0
项目:openjdk-jdk10
作者:
评论列表
文章目录