View Javadoc
1   package fr.ifremer.dali.ui.swing.content.observation.operation.measurement.grouped;
2   
3   /*
4    * #%L
5    * Dali :: UI
6    * $Id:$
7    * $HeadURL:$
8    * %%
9    * Copyright (C) 2014 - 2015 Ifremer
10   * %%
11   * This program is free software: you can redistribute it and/or modify
12   * it under the terms of the GNU Affero General Public License as published by
13   * the Free Software Foundation, either version 3 of the License, or
14   * (at your option) any later version.
15   * 
16   * This program is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   * GNU General Public License for more details.
20   * 
21   * You should have received a copy of the GNU Affero General Public License
22   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23   * #L%
24   */
25  
26  
27  import fr.ifremer.dali.dto.data.sampling.SamplingOperationDTO;
28  import fr.ifremer.dali.dto.referential.TaxonDTO;
29  import fr.ifremer.dali.dto.referential.TaxonGroupDTO;
30  
31  /**
32   * Bean used to set filter on grouped measurement
33   * <p/>
34   * Created by Ludovic on 12/06/2015.
35   */
36  public class OperationMeasurementsFilter {
37  
38      private SamplingOperationDTO samplingOperation;
39      private TaxonGroupDTO taxonGroup;
40      private TaxonDTO taxon;
41  
42      /**
43       * <p>Getter for the field <code>samplingOperation</code>.</p>
44       *
45       * @return a {@link fr.ifremer.dali.dto.data.sampling.SamplingOperationDTO} object.
46       */
47      public SamplingOperationDTO getSamplingOperation() {
48          return samplingOperation;
49      }
50  
51      /**
52       * <p>Setter for the field <code>samplingOperation</code>.</p>
53       *
54       * @param samplingOperation a {@link fr.ifremer.dali.dto.data.sampling.SamplingOperationDTO} object.
55       */
56      public void setSamplingOperation(SamplingOperationDTO samplingOperation) {
57          this.samplingOperation = samplingOperation;
58      }
59  
60      /**
61       * <p>Getter for the field <code>taxonGroup</code>.</p>
62       *
63       * @return a {@link fr.ifremer.dali.dto.referential.TaxonGroupDTO} object.
64       */
65      public TaxonGroupDTO getTaxonGroup() {
66          return taxonGroup;
67      }
68  
69      /**
70       * <p>Setter for the field <code>taxonGroup</code>.</p>
71       *
72       * @param taxonGroup a {@link fr.ifremer.dali.dto.referential.TaxonGroupDTO} object.
73       */
74      public void setTaxonGroup(TaxonGroupDTO taxonGroup) {
75          this.taxonGroup = taxonGroup;
76      }
77  
78      /**
79       * <p>Getter for the field <code>taxon</code>.</p>
80       *
81       * @return a {@link fr.ifremer.dali.dto.referential.TaxonDTO} object.
82       */
83      public TaxonDTO getTaxon() {
84          return taxon;
85      }
86  
87      /**
88       * <p>Setter for the field <code>taxon</code>.</p>
89       *
90       * @param taxon a {@link fr.ifremer.dali.dto.referential.TaxonDTO} object.
91       */
92      public void setTaxon(TaxonDTO taxon) {
93          this.taxon = taxon;
94      }
95  }