source: ether_ndacc/trunk/domain/interface/com/ether/plot/Plot.java @ 122

Last change on this file since 122 was 122, checked in by rboipsl, 13 years ago

Cleanup project ndacc from eclipse to intellij

File size: 1.6 KB
Line 
1package com.ether.plot;
2
3import java.util.Date;
4
5import org.jetbrains.annotations.NotNull;
6import org.jetbrains.annotations.Nullable;
7
8import com.ether.instrument.Instrument;
9import com.ether.plot.PlotType;
10import com.ether.station.Station;
11
12public class Plot {
13       
14                @Nullable
15                public Long getId() {
16                        return _id;
17                }
18               
19                public void setId(@Nullable final Long id) {
20                        _id = id;
21                }
22
23                @Nullable
24                public String getName() {
25                        return _name;
26                }
27
28                public void setName(@Nullable final String name) {
29                        _name = name;
30                }
31
32                @Nullable
33                public String getGranulo() {
34                        return _granulo;
35                }
36
37                public void setGranulo(@Nullable final String granulo) {
38                        _granulo = granulo;
39                }
40
41                @Nullable               
42                public Date getDatedeb() {
43                        return _datedeb;
44                }
45               
46                public void setDatedeb(@Nullable final Date datedeb) {
47                        _datedeb = datedeb;
48                }
49               
50                @Nullable
51                public Date getDatefin() {
52                        return _datefin;
53                }
54
55                public void setDatefin(@Nullable final Date datefin) {
56                        _datefin = datefin;
57                }
58
59                @Nullable
60                public  PlotType getType() {
61                        return _type;
62                }
63
64                public void setType(@Nullable final PlotType type) {
65                        _type = type;
66                }
67
68                @Nullable
69                public Instrument getInstrument() {
70                        return _instrument;
71                }
72
73                public void setInstrument(@Nullable final Instrument instrument) {
74                        _instrument = instrument;
75                }
76
77
78                @Nullable
79        private Long _id;
80        @Nullable
81        private String _name;
82        @Nullable
83        private String _granulo;
84        @Nullable
85        private Date _datedeb;
86        @Nullable
87        private Date _datefin;
88        @Nullable
89        private PlotType _type;
90        @NotNull
91        private Instrument _instrument;
92       
93}
Note: See TracBrowser for help on using the repository browser.