-
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: merged release/v1.0.0 into feat/loginpage
- Loading branch information
Showing
24 changed files
with
2,137 additions
and
401 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,11 +1,28 @@ | ||
| package edu.group5.app.control; | ||
|
|
||
| /** | ||
| * An abstract class for all Wrappers of datasets. | ||
| */ | ||
| abstract class Wrapper { | ||
|
|
||
| protected Wrapper() { | ||
| } | ||
|
|
||
| /** | ||
| * An abstract method for importing data from the dataset that child methods wrap. | ||
| * | ||
| * @return Returns a boolean, which indicates if the import was successful. Will be False if, for | ||
| * example, there is no internet connection. | ||
| * | ||
| * @throws InterruptedException This exception is thrown whenever the program is interrupted, like | ||
| * by ctrl + c. | ||
| */ | ||
| public abstract boolean importData() throws InterruptedException; | ||
|
|
||
| /** | ||
| * An abstract method to access the imported data. | ||
| * | ||
| * @return Returns a fitting parsed Object directly from the dataset. | ||
| */ | ||
| public abstract Object getData(); | ||
| } |
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
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
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
Oops, something went wrong.