I have two classes which both extends Example.
public class ClassA extends Example {
public ClassA() {
super("a", "class");
}
...
}
public class ClassB extends Example {
public ClassB() {
super("b", "class");
}
...
}
public class Example () {
public String get(String x, String y) {
return "Hello";
}
}
So thats all very well. So suppose we have another class called ExampleManager. With example manager I want to use a generic type and consequently return that generic type. e.g.
public class ExampleManager<T extends Example> {
public T getExample() {
return new T("example","example"); // So what exactly goes here?
}
}
So where I am returning my generic type how do i get this to actually work correctly and cast Example as either classA or classB?
Many Thanks
E create()method in Factory (from Tom Hawtin - tackline answer stackoverflow.com/questions/75175/…) – Roman Apr 15 '10 at 21:17Class#newInstance()or even grabbing the constructor) or just using thenewkeyword. The factory pattern is just intented to abstract this away (which is the intent of the OP). – BalusC Apr 15 '10 at 21:22