I'm trying to dynamically extend an object based upon the native type of the parameter I pass to its constructor.
I've read through some java generics and wildcard stuff, but I can't seem to find a good approach.
Pseudo Code for explanation:
public class myClass extends <?> {
// Constructor
public myClass(<?> param) {
}
}
Will I have to use some kind of builder class? If so, how would I lay this out?
Edit:
I had a feeling my approach was pretty bad, hence my asking here. To further explain:
I have an interface with many sub-interfaces, some of which also have sub-interfaces. For my purposes, I can't edit the super-interface to add methods since it's an API. I have an event which passes me one of the sub-interfaces, which I want to be able to cast to my own object that has more methods and properties, but I still want access to the methods of the sub-interface.
For example, the sub-interface is called entity. I could do myClass extendedEntity = new myClass(entity), which has the new methods I want to expose. If I made the passed sub-interface a property of the object, I could do extendedEntity.entity.originalMethod() to access method contained in the sub-interface. But I want to have it as extendedEntity.originalMethod() as well as extendedEntity.addedMethod().
Does this make sense to anyone, and is there something obvious I could do that I'm missing? (Educated as a mechanical engineer, the java is a hobby so forgive me!)