-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
38 lines (33 loc) · 970 Bytes
/
Main.java
File metadata and controls
38 lines (33 loc) · 970 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
28
29
30
31
32
33
34
35
36
37
38
package workshop;
import javax.swing.*;
import java.awt.*;
import java.io.IOException;
public class Main {
Database db = null;
MainFrame mf = null;
SignUp su = null;
ChangePw cp = null;
ChangeUserIf cu = null;
Profile pf = null;
ChangeMsg cm = null;
SearchFollow sf = null;
Feed02 f0 = null;
Uploadwindow uw = null;
FollowingBoard fb = null;
FollowingBoardWindow fbw = null;
public static void main(String[] args) throws Exception {
Main opt = new Main();
opt.db = new Database();
opt.pf = new Profile(opt);
opt.mf = new MainFrame(opt);
opt.su = new SignUp(opt);
opt.cp = new ChangePw(opt);
opt.cu = new ChangeUserIf(opt);
opt.cm = new ChangeMsg(opt);
opt.sf = new SearchFollow(opt);
opt.f0 = new Feed02(opt);
opt.uw = new Uploadwindow(opt);
opt.fb = new FollowingBoard(opt);
opt.fbw = new FollowingBoardWindow(opt);
}
}