Compare commits
2 Commits
a3bc3285e6
...
8e985224f4
Author | SHA1 | Date | |
---|---|---|---|
8e985224f4 | |||
c474f98ba3 |
@ -60,14 +60,24 @@ public class Menu {
|
||||
|
||||
|
||||
/**
|
||||
* The method toString() returns a String formated to save in a File
|
||||
* The method format() returns a String formated to save in a File
|
||||
*
|
||||
* @return a String with dish, sideDish, list of ingredients and the typ of the menu
|
||||
* @author Madeleine Vigier, Felix Wöstemeyer
|
||||
* @author Felix Wöstemeyer
|
||||
*/
|
||||
public String format() {
|
||||
return date + ";" + dish + ";" + sideDish + ";" + type + ";" + ingredients;
|
||||
}
|
||||
|
||||
/**
|
||||
* The method toString() returns fomated dishdata
|
||||
* @return a String with dish, sideDish, list of ingredients and the typ of the menu
|
||||
* @author Madeleine Vigier
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return date+";"+dish+";"+sideDish+";"+type+";"+ingredients;
|
||||
return dish + '\n'
|
||||
+ sideDish + '\n'
|
||||
+ type + '\n'
|
||||
+ ingredients;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user