-
Notifications
You must be signed in to change notification settings - Fork 0
/
Restaurante.java
56 lines (41 loc) · 996 Bytes
/
Restaurante.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* @author Daw120
*/
package com.solomongo.ejercicio1;
public class Restaurante {
private int huevos, numPlatos;
private double chorizos;
public Restaurante(){}
public Restaurante (int huevos, int numPlatos, double chorizos){
this.huevos=huevos;
this.chorizos=chorizos;
}
//gets
public int getHuevos()
{
return huevos;
}
public double getChorizos()
{
return chorizos;
}
public int getNumPlatos()
{
return numPlatos;
}
public int addHuevos()
{
return huevos;
}
public int getSirvePlato() { return numPlatos; }
//sets
public void setHuevos(int huevos)
{
this.huevos=huevos;
}
public void setChorizos(double chorizos)
{
this.chorizos=chorizos;
}
public void setSirvePlato(int numPlatos) { this.numPlatos=numPlatos; }
}