PropertyMethod propertyMethod = (PropertyMethod) typeMethod;
GetMethod proxyMethod = new GetMethod(propertyMethod.getName(), propertyMethod.getType());
addProxyMethod(proxyMethod, propertyMethod.getAnnotatedElement());
}
}
addMethod(new AsMethod(), CompositeObject.class, "as", Class.class);
addMethod(new GetDelegateMethod<Map<String, Object>>(), CompositeObject.class, "getDelegate");
addMethod(new com.buschmais.cdo.impl.proxy.query.row.GetMethod(), CompositeRowObject.class, "get", String.class, Class.class);
addMethod(new GetColumnsMethod(), CompositeRowObject.class, "getColumns");
addMethod(new HashCodeMethod(), Object.class, "hashCode");
addMethod(new EqualsMethod(), Object.class, "equals", Object.class);