if I comment out the lines of code...
My event handler gets invoked... and I stop at my breakpoint..
/*
@Property(write = false)
private TynamoClassDescriptor classDescriptor;
@Property
private BeanModel beanModel;
@Inject
private BeanModelSource beanModelSource;
*/
public Object onActivate(String id)
{
if (beanType == null)
return Utils.new404(messages);
this.bean = contextValueEncoder.toValue(beanType, id);
if (bean == null)
return Utils.new404(messages);
//beanModel = beanModelSource.createEditModel(beanType, messages);
return null;
}
If anyone can explain this runtime behavior I would appreciate it... a way
around it so I can code properly.
It is obvious something is wrong... either a race condition or some data/code
segment issue.
I cannot add any code for anything... otherwise my event handler never gets
called... or it gets blocked and called too late
Thanks in advance