While looking into some code I found out that there is following kind of syntax.
protected <T> T Execute(Class<T> returnType){
T t;
return t;
}
What does this mean?? What if I want to save the outcome in some variable of other class?