-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.java
More file actions
27 lines (22 loc) · 679 Bytes
/
App.java
File metadata and controls
27 lines (22 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import java.io.IOException;
/**1
* A App e responsável pela execuçao do programa.
*
* @author (your name)
* @version (a version number or a date)
*/
public class App {
static Controller controller = new Controller();
static View view = new View(controller);
/**
* Metodo main que corre o programa.
*
* @param args
* @throws InterruptedException
* @throws IOException
* @throws ClassNotFoundException
*/
public static void main(String[] args) throws InterruptedException, IOException, ClassNotFoundException {
view.run();
}
}