Newer
Older
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
57
58
59
60
61
62
package lecture_19_inheritance;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class Drawer implements IStorage{
int height;
int width;
int depth;
Collection<Clothing> clothes;
public Drawer(int width, int depth, int height) {
clothes = new ArrayList<Clothing>();
}
public int getHeight(){
return this.height;
}
public int getWidth() {
return width;
}
public int getDepth() {
return depth;
}
public boolean add(Clothing clothing) {
if(canAdd(clothing)) {
clothes.add(clothing);
return true;
}else {
return false;
}
}
/**
* Drawers should only contain clean clothing, no shoes allowed in drawers.
*/
public boolean canAdd(Clothing item) {
if(item.isDirty())
return false;
if(item.getType().equals("Shoes"))
return false;
return true;
}
public boolean remove(Clothing item) {
if(clothes.contains(item))
{
clothes.remove(item);
return true;
}
else {
return false;
}
}
}