I don't want to discuss the merits of this approach, just if it is possible. I believe the answer to be "no". But maybe someone will surprise me!
Java here. Imagine you have a core widget class. It has a method "calculateHeight()", that returns a size. The size is too big - this result in buttons (say) that are too big. You can extend DefaultWidget to create your own NiceWidget, and implement calculateHeight() to return a nicer size.
Now a library class WindowDisplayFactory, uses DefaultWidget in a fairly complex method. You would like it to use your NiceWidget. The factory class's method looks something like this:
public IWidget createView(Component parent) {
DefaultWidget widget = new DefaultWidget(CONSTS.BLUE, CONSTS.SIZE_STUPIDLY);
...
SomeOtherWidget bla = new SomeOtherWidget(widget);
SomeResultWidget result = new SomeResultWidget(parent);
...
// more widget creation and voodoo here
...
SomeListener listener = new SomeListener(parent, widget, flags);
...
return result;
}
That's the deal. The question - how to get it to use my own NiceWidget? Or at least my own "calculateHeight". Ideally, I'd like to be able to monkey patch the DefaultWidget so that its calculateHeight did the right thing...
public IWidget createView(Component parent) {
DefaultWidget.class.setMehod("calculateHeight", myCalculateHeight);
return super.createView(parent);
}
Which is what I could do in Python, Ruby, etc. I've invented the name setMethod() though. The other options open to me are:
- Copying and pasting the code of the "createView" method into my own class that inherits from the factory class
- Living with widgets that are too big
The factory class can't be changed - it is part of a core not-invented-here API. I tried reflection on the returned result to get to the widget that (eventually) got added, but it is several widget-layers down and somewhere it gets used to initialise other stuff, causing odd side effects.
Any ideas? My solution so far is the copy-paste job, but that's a cop out and I'd be interested to hear other opinions.
