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

Commit

Permalink
description of intention/idea
Browse files Browse the repository at this point in the history
  • Loading branch information
Desiree Sacher committed Nov 20, 2012
1 parent 44455a3 commit 65adcba
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
22 changes: 22 additions & 0 deletions strategyDemo/src.main.java/ICar.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package src.main.java;

public class ICar {

/**
* Interface fuer Car, Auto hat Features und unterschiedliche Verhaltensweisen im Sommer und im Winter, diese sollen
* je nach Jahreszeiten automatisch aktiv werden
*/

/**
* Winter: bessere Pneu für Schnee/Regen
* Bremsweg angepasst
* Heizung funktioniert
* Licht permament an da dunkel
*
* Sommer: Sommerpneu
* Bremsweg angepasst
* Heizung auf Klimaanlage
* Licht nur an wenn Sensor auf dunkel //ist ja nur Bsp Szenario auf die Schnelle, noch nicht ausgereift..
*/

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

public class StrategyImplementationMain {

public static void main(String[] args) {
System.out.println("hello world");
}

}

0 comments on commit 65adcba

Please sign in to comment.