Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
4f8bcc7fa6ac7640915ac3aa5e115b6d37c08a86
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
package domain;

import java.io.Serializable;

public class HouseFeatures implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private int nRooms;
	private int nKitchens;
	private int nBaths;
	private int nLivings;
	private int nParkings;

	public HouseFeatures(int nRooms, int nKitchens, int nBaths, int nLivings,
			int nParkings) {
		super();
		this.setnRooms(nRooms);
		this.setnKitchens(nKitchens);
		this.setnBaths(nBaths);
		this.setnLivings(nLivings);
		this.setnParkings(nParkings);
	}

	public int getnRooms() {
		return nRooms;
	}

	public void setnRooms(int nRooms) {
		this.nRooms = nRooms;
	}

	public int getnKitchens() {
		return nKitchens;
	}

	public void setnKitchens(int nKitchens) {
		this.nKitchens = nKitchens;
	}

	public int getnBaths() {
		return nBaths;
	}

	public void setnBaths(int nBaths) {
		this.nBaths = nBaths;
	}

	public int getnLivings() {
		return nLivings;
	}

	public void setnLivings(int nLivings) {
		this.nLivings = nLivings;
	}

	public int getnParkings() {
		return nParkings;
	}

	public void setnParkings(int nParkings) {
		this.nParkings = nParkings;
	}

}

Commits for RRRRHHHH_CoderuralHouses client/src/domain/HouseFeatures.java

Diff revisions: vs.
Revision Author Commited Message
4f8bcc ... epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned