source: ether_statistics/service/implementation/com/ether/SimulationPlot.java @ 569

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

Nouveau projet

File size: 2.4 KB
Line 
1package com.ether;
2
3import org.jetbrains.annotations.NotNull;
4import org.jetbrains.annotations.Nullable;
5
6/**
7 * @author vmipsl
8 * @date 06 september 2012
9 */
10public class SimulationPlot
11        extends MegapoliPlot
12{
13    @NotNull
14    public Integer getModelId()
15    {
16        return _modelId;
17    }
18
19    public void setModelId( @NotNull final Integer modelId )
20    {
21        _modelId = modelId;
22    }
23
24    @NotNull
25    public Integer getVariableId()
26    {
27        return _variableId;
28    }
29
30    public void setVariableId( @NotNull final Integer variableId )
31    {
32        _variableId = variableId;
33    }
34
35    @NotNull
36    public String getVariableName()
37    {
38        return _variableName;
39    }
40
41    public void setVariableName( @NotNull final String variableName )
42    {
43        _variableName = variableName;
44    }
45
46    @NotNull
47    public Integer getLevel()
48    {
49        return _level;
50    }
51
52    public void setLevel( @NotNull final Integer level )
53    {
54        _level = level;
55    }
56
57    @NotNull
58    public String getDate()
59    {
60        return _date;
61    }
62
63    public void setDate( @NotNull final String date )
64    {
65        _date = date;
66    }
67
68    @NotNull
69    public Boolean isRasterContour()
70    {
71        return _isRasterContour;
72    }
73
74    public void setRasterContour( @NotNull final Boolean rasterContour )
75    {
76        _isRasterContour = rasterContour;
77    }
78
79    @NotNull
80    public Boolean isRealDataToDisplay()
81    {
82        return _realDataToDisplay;
83    }
84
85    public void setRealDataToDisplay( @NotNull final Boolean realDataToDisplay )
86    {
87        _realDataToDisplay = realDataToDisplay;
88    }
89
90    @Nullable
91    public Data getRealData()
92    {
93        return _realData;
94    }
95
96    public void setRealData( @Nullable final Data realData )
97    {
98        _realData = realData;
99    }
100
101    @Nullable
102    public Integer getRealDataNumber()
103    {
104        return _realDataNumber;
105    }
106
107    public void setRealDataNumber( @Nullable final Integer realDataNumber )
108    {
109        _realDataNumber = realDataNumber;
110    }
111
112    @NotNull
113    private Integer _modelId;
114    @NotNull
115    private Integer _variableId;
116    @NotNull
117    private String _variableName;
118    // The level of bottom_top
119    @NotNull
120    private Integer _level;
121    @NotNull
122    private String _date;
123    @NotNull
124    private Boolean _isRasterContour;
125    @NotNull
126    private Boolean _realDataToDisplay;
127    @Nullable
128    private Data _realData;
129    @Nullable
130    private Integer _realDataNumber;
131}
Note: See TracBrowser for help on using the repository browser.