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
63
64
65
66
67
68
69
70
71
72
73
package lecture_19_inheritance;
import java.util.ArrayList;
import java.util.Collection;
public class Shelf implements IStorage{
int height;
int width;
int depth;
Collection<Clothing> clothes;
public Shelf(int width, int depth, int height) {
this.height = height;
this.width = width;
this.depth = depth;
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;
}
}
/**
* Shelves should only contain clean clothing.
* Socks should not be placed on shelves
*/
public boolean canAdd(Clothing item) {
if(item.isDirty())
return false;
if(item.getType().equals("Socks"))
return false;
return true;
}
public boolean remove(Clothing item) {
if(clothes.contains(item))
{
clothes.remove(item);
return true;
}
else {
return false;
}
}
public static void main(String[] args) {
Shelf shelf = new Shelf(60,40,30);
if(shelf.add(new Clothing("Levis", 20,"Jeans")))
System.out.println("La den p� en hylle!");
else
System.out.println("Kunne ikke legge den p� hyllen");
}
}