Beispiel #1
0
 public SimpleIndexedPropertyDescriptor(IndexedPropertyDescriptor original)
     throws IntrospectionException {
   this(
       original.getName(),
       original.getReadMethod(),
       original.getWriteMethod(),
       original.getIndexedReadMethod(),
       original.getIndexedWriteMethod());
   PropertyDescriptorUtils.copyNonMethodProperties(original, this);
 }