OOP2

boek.java

1
class Boek {
2
		public Boek(String naam, int prijs, e_type type) {
3
				setNaam(naam);
4
				setPrijs(prijs);
5
				setType(type);
6
		}
7
8
		public enum e_type {FOTOBOEK, ROMAN, STRIP};
9
		
10
		private e_type m_type;
11
		private String m_naam;
12
		private int m_prijs;
13
14
		public e_type type() {
15
				return m_type;}
16
		public void setType(e_type type) {
17
				m_type = type;}
18
19
		public String naam() {
20
				return m_naam;}
21
		public void setNaam(String naam) {
22
				m_naam = naam;}
23
		
24
		public int prijs() {
25
				return m_prijs;}
26
		public void setPrijs(int prijs) {
27
				m_prijs = prijs;}
28
		
29
}
30