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
package domain;

public class Client {

	private String name;
	private String mailAccount;
	private String telephone;

	public Client(String name, String mailAccount, String telephone) {
		super();
		this.name = name;
		this.mailAccount = mailAccount;
		this.telephone = telephone;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getMailAccount() {
		return mailAccount;
	}

	public void setMailAccount(String mailAccount) {
		this.mailAccount = mailAccount;
	}

	public String getTelephone() {
		return telephone;
	}

	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}

}

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

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

Merge conflicts solutioned