-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUlasim.java
48 lines (41 loc) · 872 Bytes
/
Ulasim.java
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
/**
*
* @author Gökçe Demir
*/
public class Ulasim
{
protected String[] ulasimTipi;
//composition has-a relationship
public Sehir sehir;
private String firmaAdi;
private String webSite;
public Ulasim()
{
ulasimTipi = new String[4];
sehir = new Sehir();
}
/**
* @return the firmaAdi
*/
public String getFirmaAdi() {
return firmaAdi;
}
/**
* @param firmaAdi the firmaAdi to set
*/
public void setFirmaAdi(String firmaAdi) {
this.firmaAdi = firmaAdi;
}
/**
* @return the webSite
*/
public String getWebSite() {
return webSite;
}
/**
* @param webSite the webSite to set
*/
public void setWebSite(String webSite) {
this.webSite = webSite;
}
}