I'm working on a small university assignment. Being tired of writing three lines of code to add buttons I wrote a small utility function:
private JButton addButton(Container container, String text) {
JButton button = new JButton(text);
button.addActionListener(this);
container.add(button);
return button;
}
Then of course came along the utility method to add textFields:
private JTextField addInput(Container container, int width) {
JTextField input = new JTextField(width);
input.addActionListener(this);
container.add(input);
return input;
}
As you can see, they are almost identical. So I tried to reduce the number of lines by having an all powerful method that would add anything to any other thing.
private Component addComponent(Container container, Component component) {
component.addActionListener(this);
container.add(component);
return component;
}
Now, I must admit that I'm starting to think maybe these ultra small utility functions are a bit absurd.
However, regardless, my all powerful addComponent method didn't work. Instead complaining that Component's don't have ActionListeners.
The only way I can see around this is having a MyJButton and MyJTextField both of which inherit from MyComponent which has an addActionListener method. The original goal of simplicity and removing repetition being thrown out the window?
How can/should this be done? I'm new to Java and the strictly typed stuff!