Ich hab bei einem Programm nicht den richtigen Durchblick, weil ich mit einer bestimmten Zeile nichts anfangen kann:
bedeutet die Zeile super.addNotify(), dass im Konstruktor automatisch diese Methode ausgeführt wird?
Ich kann nämlich im ganzen Programm auch nicht finden, dass "addNotify" einmal verwendet wird
Code:
public class MainFrame extends DrawerMainframe implements ActionListener, ControlEventListener {
...
public MainFrame(Controller controller) {
super(...);
.....
}
...
public void addNotify() {
super.addNotify();
.....
}
...
bedeutet die Zeile super.addNotify(), dass im Konstruktor automatisch diese Methode ausgeführt wird?
Ich kann nämlich im ganzen Programm auch nicht finden, dass "addNotify" einmal verwendet wird