Suppose I have these abstract classes:
class BasicObject {
private String name;
// getter and setter here
}
class BasicObjectExplorer {
void explore(BasicObject basicObject) {
// now some actions regarding name property
}
}
Now you have AdvancedObject extending BasicObject and AdvancedObjectExplorer extending BasicObjectExplorer, How to use generics to reuse code of Basic classes and write just functionality regarding new properties added to AdvancedObject?
Thank you for help.
BaseorAbstractas a prefix, rather thanBasic. And, yeah, you might want to look at rephrasing your question so that generics are even needed. The way it's worded right now, Marcelo's right: you would just use simple inheritance. – Mike M Jun 7 '11 at 13:49