a.)DeltaSpikeProxyFactory totally misses docs it sems. Or did I miss something?
b.) there are methods which are imo questionable, e.g.
public <T> Class<T> getProxyClass(BeanManager beanManager, Class<T> targetClass)
{
return getProxyClass(beanManager, targetClass, DummyInvocationHandler.class);
}
what do we need this for? Can I simply remove it?
The DummyInvocationHandler just returns null. Without calling the proxied
instance. It's basically a no-op impl. Why do we need this?
c.) The ordering of the methods are mixed. Imo all public methods should be on
top, protected and private at the bottom. Really hard to read atm.
Any thoughts?
LieGrue,
strub