COMP2396
Loading...
Searching...
No Matches
T8Client.java
Go to the documentation of this file.
1
import
javax.swing.SwingUtilities;
2
3
public
class
T8Client
{
4
5
public
static
void
main
(String[] args) {
6
SwingUtilities.invokeLater(
new
Runnable
() {
7
@Override
8
public
void
run() {
9
View
view =
new
View
();
10
Controller
controller =
new
Controller
(view);
11
controller.
start
();
12
}
13
});
14
}
15
}
Controller
Definition
Controller.java:9
Controller.start
void start()
Definition
Controller.java:23
Runnable
T8Client
Definition
T8Client.java:3
T8Client.main
static void main(String[] args)
Definition
T8Client.java:5
View
Definition
View.java:18
tutorial8
Solution
T8Client
T8Client.java
Generated on Sat Dec 7 2024 17:10:09 for COMP2396 by
1.12.0