I suggest finding an alternative way of:
public AbstractGridCrud(Class<T> domainType, CrudLayout crudLayout, CrudFormFactory<T> crudFormFactory, CrudListener<T> crudListener) {
super(domainType, crudLayout, crudFormFactory, crudListener);
initLayout();
}
I want to initialize a final variable before I override initLayout() and of course it is null by the time I use it in the overriden method,
I suggest finding an alternative way of:
I want to initialize a final variable before I override initLayout() and of course it is null by the time I use it in the overriden method,