G
Gast
Gast
Hi, hab eine Klasse für meine GUI erstellt, das Problem ist nun dass wenn ich eine Aktion ausführen will brauch ich aus der main Methode eine LinkedList, kann mir jemand sagen wie ich da ran komme?
class MyGui extends JFrame {
LinkedList data;
public MyGui(LinkedList theData) {
super("Ich bin die GUI");
data = theData;
...
}
...
public static void main(String[] args) {
LinkedList myData = irgendwer.machMichNeListe();
new MyGui(myData).setVisible(true);
}
}
Gast hat gesagt.:. . .
Frage: Kann ich die Linkedlist auch irgend wie aus main() bekommen wenn ich es nicht mit dem Konstruktor übergebe?