Currentlly this code ``` java @EBean public class MyGenericBean<T> { } ``` generates this: ``` java public static MyGenericBean_ getInstance_(Context context) { return new MyGenericBean_(context); } ``` This should be generified just like with `@EView`.
Currentlly this code
generates this:
This should be generified just like with
@EView.