Родительский класс был протестирован сам по себе, он реагирует к ключевым событиям, как и ожидалось.
Код: Выделить всё
class GeneralPanel extends JPanel implements MouseListener {
public GeneralPanel(){
getInputMap().put(KeyStroke.getKeyStroke("S"), "doSomething");
getActionMap().put("doSomething",
new DoSomethingAction());
}
// other stuff, including mouseMoved and the like, and paintComponent
}
Теперь мне нужно расширить этот класс до конкретной панели, которая фактически отображает данные< /p>
Код: Выделить всё
class SpecificPanel extends GeneralPanel implements MouseListener{
// other stuff, including mouseMoved and the like, and paintComponent
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... its-parent