Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
b09f345318baa9ca734e11c87f52f8522d7cc1fb
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
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.nRooms = nRooms;
		this.nKitchens = nKitchens;
		this.nBaths = nBaths;
		this.nLivings = nLivings;
		this.nParkings = nParkings;
	}

	public int getnRooms() {
		return nRooms;
	}



	public int getnKitchens() {
		return nKitchens;
	}



	public int getnBaths() {
		return nBaths;
	}



	public int getnLivings() {
		return nLivings;
	}



	public int getnParkings() {
		return nParkings;
	}


}

Commits for RRRRHHHH_CoderuralHouses/src/domain/HouseFeatures.java

Diff revisions: vs.
Revision Author Commited Message
d30bcc ... Diff Diff pinene picture pinene Wed 20 May, 2015 16:32:33 +0000

cleaning

4f8bcc ... Diff Diff epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned

afdc66 ... Diff Diff camjan Wed 25 Mar, 2015 16:43:35 +0000

Villatripas de arriba districs added and the option of searching houses with diferent parameters

d23286 ... unknown Tue 03 Mar, 2015 22:07:56 +0000

The code for different owner operations mostly implemented