-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessManagementUML
43 lines (42 loc) · 2.8 KB
/
MessManagementUML
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
39
40
41
42
43
|------------------------------------------------------------------------|
| MessManagementSystemGUI |
|------------------------------------------------------------------------|
| - customers: Map<String, Customer> |
| - customerIdField: JTextField |
| - nameField: JTextField |
| - hostelNameField: JTextField |
| - courseField: JTextField |
| - mobileNumberField: JTextField |
| - miscelleneousField: JTextField |
| - enrollButton: JButton |
| - logEntryButton: JButton |
| - messCutButton: JButton |
| - markAbsentButton: JButton |
| - generateBillButton: JButton |
| - miscellaneousNotesButton: JButton |
| - displayAllBillsButton: JButton |
| - outputArea: JTextArea |
|------------------------------------------------------------------------|
| + MessManagementSystemGUI() |
| + actionPerformed(ActionEvent): void |
| - enrollCustomer(String, String, String, String, String, String): void |
| - logEntry(String): void |
| - markMessCut(String): void |
| - markAbsent(String): void |
| - generateBill(String): void |
| - displayAllBills(): void |
|------------------------------------------------------------------------|
|----------------------------------------------------|
| Customer |
|----------------------------------------------------|
| - customerId: String |
| - name: String |
| - hostelName: String |
| - course: String |
| - mobileNumber: String |
| - enrolled: boolean |
| - messCut: boolean |
| - totalCost: int |
|----------------------------------------------------|
| + Customer(String, String, String, String, String) |
|----------------------------------------------------|