Skip to content
This repository has been archived by the owner on Jan 11, 2018. It is now read-only.

Commit

Permalink
gefummel wegen struktur
Browse files Browse the repository at this point in the history
  • Loading branch information
Desiree Sacher committed Nov 20, 2012
1 parent 65adcba commit 04072ab
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package src.main.java;

public class ICar {
public interface ICar {

/**
* Interface fuer Car, Auto hat Features und unterschiedliche Verhaltensweisen im Sommer und im Winter, diese sollen
Expand All @@ -19,4 +19,13 @@ public class ICar {
* Licht nur an wenn Sensor auf dunkel //ist ja nur Bsp Szenario auf die Schnelle, noch nicht ausgereift..
*/

public boolean heatingWorks();

public boolean brakesWorkVeryWell();

public boolean lightWorks();

public void giveTire();


}
6 changes: 6 additions & 0 deletions strategyDemo/src/main/java/SummerCar.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package src.main.java;

public class SummerCar implements ICar{


}

0 comments on commit 04072ab

Please sign in to comment.