-
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.
- Loading branch information
Showing
8 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
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,9 @@ | ||
package evaluating; | ||
|
||
/** | ||
* Created by jonas on 05/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface History { | ||
|
||
} |
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,10 @@ | ||
package planning; | ||
|
||
/** | ||
* Created by jonas on 05/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface Exercise { | ||
String getName(); | ||
void setName(String name); | ||
} |
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,14 @@ | ||
package planning; | ||
|
||
import java.util.ArrayList; | ||
|
||
/** | ||
* Created by jonas on 05/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface Plan { | ||
ArrayList<Exercise> getExercises(); | ||
void setExercises(ArrayList<Exercise> exercises); | ||
void addExercise(Exercise exercise); | ||
void removeExercise(Exercise exercise); | ||
} |
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,9 @@ | ||
package planning; | ||
|
||
/** | ||
* Created by jonas on 06/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface PlanStore { | ||
|
||
} |
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,17 @@ | ||
package training; | ||
|
||
import java.util.ArrayList; | ||
|
||
import planning.Plan; | ||
|
||
/** | ||
* Created by jonas on 05/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface Fit { | ||
// Setter und Getter für alle Fitnesspläne | ||
public ArrayList<Plan> getPlans(); | ||
public void setPlans(ArrayList<Plan> plans); | ||
void addPlan(Plan plan); | ||
void removePlan(Plan plan); | ||
} |
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,12 @@ | ||
package training; | ||
|
||
/** | ||
* Created by jonas on 05/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface Record { | ||
int getWeight(); | ||
void setWeight(int weight); | ||
int getRepetitions(); | ||
void setRepetitions(int repetitions); | ||
} |
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,18 @@ | ||
package training; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Date; | ||
|
||
import planning.Exercise; | ||
|
||
/** | ||
* Created by jonas on 05/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface Training { | ||
ArrayList<Exercise> getExercises(); | ||
void setExercises(ArrayList<Exercise> exercises); | ||
|
||
Date getDay(); | ||
void setDay(Date date); | ||
} |
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,9 @@ | ||
package user; | ||
|
||
/** | ||
* Created by jonas on 06/05/2015. | ||
* Not to be read or used by anyone but jonas. | ||
*/ | ||
public interface User { | ||
|
||
} |