source: tapas/domain/interface/com/ether/tapas/Observatory.java @ 421

Last change on this file since 421 was 421, checked in by rboipsl, 12 years ago

creation listes dans form
creation class Observatory
3

File size: 1.2 KB
Line 
1package com.ether.tapas;
2
3import org.jetbrains.annotations.NotNull;
4
5/**
6 * @author rboipsl
7 * @date 19 march 2012
8 */
9public class Observatory
10{
11    @NotNull
12    public Integer getId()
13    {
14        return _id;
15    }
16
17    public void setId( @NotNull final Integer id )
18    {
19        _id = id;
20    }
21
22    @NotNull
23    public String getName()
24    {
25        return _name;
26    }
27
28    public void setName( @NotNull final String name )
29    {
30        _name = name;
31    }
32
33    @NotNull
34    public Double getLongitude()
35    {
36        return _longitude;
37    }
38
39    public void setLongitude( @NotNull final Double longitude )
40    {
41        _longitude = longitude;
42    }
43
44    @NotNull
45    public Double getLatitude()
46    {
47        return _latitude;
48    }
49
50    public void setLatitude( @NotNull final Double latitude )
51    {
52        _latitude = latitude;
53    }
54
55    @NotNull
56    public Double getAltitude()
57    {
58        return _altitude;
59    }
60
61    public void setAltitude( @NotNull final Double altitude )
62    {
63        _altitude = altitude;
64    }
65
66    @NotNull
67    private Integer _id;
68    @NotNull
69    private String _name;
70    @NotNull
71    private Double _longitude;
72    @NotNull
73    private Double _latitude;
74    @NotNull
75    private Double _altitude;
76}
Note: See TracBrowser for help on using the repository browser.