source: tapas/service/interface/com/ether/tapas/Observation.java @ 400

Last change on this file since 400 was 400, checked in by vmipsl, 12 years ago

objet Tapas entier avec sérialization

File size: 1.1 KB
Line 
1package com.ether.tapas;
2
3import org.jetbrains.annotations.NotNull;
4
5import java.util.Date;
6
7/**
8 * @author vmipsl
9 * @date 08 march 2012
10 */
11public class Observation
12{
13    @NotNull
14    public Date getDate()
15    {
16        return _date;
17    }
18
19    public void setDate( @NotNull final Date date )
20    {
21        _date = date;
22    }
23
24    @NotNull
25    public Observatory getObservatory()
26    {
27        return _observatory;
28    }
29
30    public void setObservatory( @NotNull final Observatory observatory )
31    {
32        _observatory = observatory;
33    }
34
35    @NotNull
36    public Los getLos()
37    {
38        return _los;
39    }
40
41    public void setLos( @NotNull final Los los )
42    {
43        _los = los;
44    }
45
46    @NotNull
47    public Instrument getInstrument()
48    {
49        return _instrument;
50    }
51
52    public void setInstrument( @NotNull final Instrument instrument )
53    {
54        _instrument = instrument;
55    }
56
57    @NotNull
58    private Date _date;
59    @NotNull
60    private Observatory _observatory;
61    @NotNull
62    private Los _los;
63    @NotNull
64    private Instrument _instrument;
65}
Note: See TracBrowser for help on using the repository browser.