-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete screen presenter package; create a seperate package for all pr…
…esenter class; provide frame work of all presenter class for use case development
- Loading branch information
Showing
9 changed files
with
34 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
4 changes: 3 additions & 1 deletion
4
...ssagepresenter/MessageOutputBoundary.java → ...java/presenter/MessageOutputBoundary.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,6 +1,8 @@ | ||
package messagepresenter; | ||
package presenter; | ||
|
||
public interface MessageOutputBoundary { | ||
MessageResponseModel prepareFail(String msg); | ||
|
||
// TODO: complete method signature | ||
MessageResponseModel prepareSuccess(String msg); | ||
} |
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,5 @@ | ||
package presenter; | ||
|
||
// TODO: implement this class | ||
public class MessageResponseModel { | ||
} |
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,8 @@ | ||
package presenter; | ||
|
||
public interface TheQuestionOutputBoundary { | ||
TheQuestionResponseModel prepareFail(String msg); | ||
|
||
// TODO: complete method signature | ||
TheQuestionResponseModel prepareSuccess(); | ||
} |
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,5 @@ | ||
package presenter; | ||
|
||
// TODO: implement this class | ||
public class TheQuestionResponseModel { | ||
} |
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,8 @@ | ||
package presenter; | ||
|
||
public interface ViewOutputBoundary { | ||
ViewResponseModel prepareFail(String msg); | ||
|
||
// TODO: complete method signature | ||
ViewResponseModel prepareSuccess(); | ||
} |
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,5 @@ | ||
package presenter; | ||
|
||
// TODO: implement this class | ||
public class ViewResponseModel { | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.