I have a method like this:
protected <T> void addThing(T obj) {
process(new Blah<T>(obj));
}
The code that is calling into this doesn't know the exact concrete class of the thing it is calling addThing() on:
Animal f = new Giraffe();
addThing(f);
So what I end up with is Blah<Animal>. But what I actually want to get is Blah<Giraffe>. Is this possible? The only solution I could get so far was kind of awkward. I end up taking the data object into Blah as an Object and downcasting it according to the template:
Blah(Object obj) {
// Undesirable downcast.
this.thing = (T)obj;
}
protected <T> void addThing(Class<T> clazz, Object obj) {
process(new Blah<T>(obj));
}
Animal f = new Giraffe();
addThing(f.getClass(), f);
I guess I'm going to have to do a potentially unsafe downcast somewhere, as I don't know the subtype?