-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added observer, controller and view
- Loading branch information
Showing
5 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/main/java/edu/ntnu/idi/idatt/Controller/exchangePageController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| package edu.ntnu.idi.idatt.Controller; | ||
|
|
||
| public class exchangePageController { | ||
| } |
4 changes: 4 additions & 0 deletions
4
src/main/java/edu/ntnu/idi/idatt/Controller/mainPageController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| package edu.ntnu.idi.idatt.Controller; | ||
|
|
||
| public class mainPageController { | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| package edu.ntnu.idi.idatt; | ||
|
|
||
| public interface Observer { | ||
|
|
||
| void update(); | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| package edu.ntnu.idi.idatt.View; | ||
|
|
||
| public class exchangePage { | ||
| } |
2 changes: 1 addition & 1 deletion
2
...va/edu/ntnu/idi/idatt/View/main_page.java → ...ava/edu/ntnu/idi/idatt/View/mainPage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package edu.ntnu.idi.idatt.View; | ||
|
|
||
| public class main_page { | ||
| public class mainPage { | ||
| } |