ome-xml  5.5.0
ImagingEnvironment.h
1 /*
2  * #%L
3  * OME-XML C++ library for working with OME-XML metadata structures.
4  * %%
5  * Copyright © 2006 - 2016 Open Microscopy Environment:
6  * - Massachusetts Institute of Technology
7  * - National Institutes of Health
8  * - University of Dundee
9  * - Board of Regents of the University of Wisconsin-Madison
10  * - Glencoe Software, Inc.
11  * %%
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions are met:
14  *
15  * 1. Redistributions of source code must retain the above copyright notice,
16  * this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright notice,
18  * this list of conditions and the following disclaimer in the documentation
19  * and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  * The views and conclusions contained in the software and documentation are
34  * those of the authors and should not be interpreted as representing official
35  * policies, either expressed or implied, of any organization.
36  * #L%
37  */
38 
39 /*─────────────────────────────────────────────────────────────────────────────
40  *
41  * THIS IS AUTOMATICALLY GENERATED CODE. DO NOT MODIFY.
42  *
43  *─────────────────────────────────────────────────────────────────────────────
44  */
45 
46 #ifndef OME_XML_MODEL_IMAGINGENVIRONMENT_H
47 #define OME_XML_MODEL_IMAGINGENVIRONMENT_H
48 
49 #include <algorithm>
50 #include <list>
51 #include <stdexcept>
52 #include <string>
53 #include <vector>
54 
55 #include <ome/common/log.h>
56 
57 #include <ome/common/xml/dom/Document.h>
58 #include <ome/common/xml/dom/Element.h>
59 #include <ome/common/xml/dom/Node.h>
60 
61 #include <ome/xml/model/primitives/Quantity.h>
62 
63 #include <ome/xml/model/detail/OMEModelObject.h>
64 #include <ome/xml/model/enums/UnitsPressure.h>
65 #include <ome/xml/model/enums/UnitsTemperature.h>
66 #include <ome/xml/model/primitives/OrderedMultimap.h>
67 #include <ome/xml/model/primitives/PercentFraction.h>
68 
69 namespace ome
70 {
71  namespace xml
72  {
73  namespace model
74  {
75 
76  // Forward declarations.
77  class OMEModel;
78 
83  {
84  private:
85  class Impl;
87  std::shared_ptr<Impl> impl;
88 
89  public:
92 
99 
101  virtual
103 
118  static std::shared_ptr<ImagingEnvironment>
119  create(const common::xml::dom::Element& element,
121 
122  // Documented in superclass.
123  const std::string&
124  elementName() const;
125 
126  // Documented in superclass.
127  bool
128  validElementName(const std::string& name) const;
129 
130  private:
134 
135  public:
136  // -- OMEModelObject API methods --
137 
139  virtual void
140  update(const common::xml::dom::Element& element,
142 
143  public:
144  // -- ImagingEnvironment API methods --
145 
147  bool
148  link (std::shared_ptr<Reference>& reference,
149  std::shared_ptr<ome::xml::model::OMEModelObject>& object);
150 
156  std::shared_ptr<ome::xml::model::primitives::PercentFraction>
157  getCO2Percent ();
158 
164  const std::shared_ptr<ome::xml::model::primitives::PercentFraction>
165  getCO2Percent () const;
166 
172  void
173  setCO2Percent (std::shared_ptr<ome::xml::model::primitives::PercentFraction>& co2Percent);
174 
180  std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsTemperature > >&
181  getTemperature ();
182 
188  const std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsTemperature > >&
189  getTemperature () const;
190 
196  void
198 
204  std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsPressure > >&
205  getAirPressure ();
206 
212  const std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsPressure > >&
213  getAirPressure () const;
214 
220  void
222 
228  std::shared_ptr<ome::xml::model::primitives::PercentFraction>
229  getHumidity ();
230 
236  const std::shared_ptr<ome::xml::model::primitives::PercentFraction>
237  getHumidity () const;
238 
244  void
245  setHumidity (std::shared_ptr<ome::xml::model::primitives::PercentFraction>& humidity);
246 
252  std::shared_ptr<ome::xml::model::primitives::OrderedMultimap>
253  getMap ();
254 
260  const std::shared_ptr<ome::xml::model::primitives::OrderedMultimap>
261  getMap () const;
262 
268  void
269  setMap (std::shared_ptr<ome::xml::model::primitives::OrderedMultimap>& map);
270 
271  protected:
272  // Documented in base class.
273  virtual void
275  common::xml::dom::Element& element) const;
276 
277  public:
278  // Documented in superclass.
279  const std::string&
280  getXMLNamespace() const;
281  };
282 
283  }
284  }
285 }
286 
287 #endif // OME_XML_MODEL_IMAGINGENVIRONMENT_H
288 
289 /*
290  * Local Variables:
291  * mode:C++
292  * End:
293  */
OME model interface (abstract top-level container)
Definition: OMEModel.h:61
virtual ~ImagingEnvironment()
Destructor.
Definition: ImagingEnvironment.cpp:154
void setMap(std::shared_ptr< ome::xml::model::primitives::OrderedMultimap > &map)
Set the Map property.
Definition: ImagingEnvironment.cpp:386
std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsPressure > > & getAirPressure()
Get the AirPressure property.
Definition: ImagingEnvironment.cpp:330
static std::shared_ptr< ImagingEnvironment > create(const common::xml::dom::Element &element, ome::xml::model::OMEModel &model)
Create a ImagingEnvironment model object from DOM element.
Definition: ImagingEnvironment.cpp:159
std::shared_ptr< ome::xml::model::primitives::PercentFraction > getHumidity()
Get the Humidity property.
Definition: ImagingEnvironment.cpp:351
void setAirPressure(const std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsPressure > > &airPressure)
Set the AirPressure property.
Definition: ImagingEnvironment.cpp:344
virtual void update(const common::xml::dom::Element &element, ome::xml::model::OMEModel &model)
Update the object hierarchy recursively from an XML DOM tree.
Definition: ImagingEnvironment.cpp:181
Private implementation details of ImagingEnvironment model object.
Definition: ImagingEnvironment.cpp:72
const std::string & getXMLNamespace() const
Get the XML namespace for this model object.
Definition: ImagingEnvironment.cpp:463
ImagingEnvironment()
Default constructor.
Definition: ImagingEnvironment.cpp:139
OME model object (concrete implementation).
Definition: OMEModelObject.h:64
std::shared_ptr< Impl > impl
Private implementation details.
Definition: ImagingEnvironment.h:85
Open Microscopy Environment C++ implementation.
bool validElementName(const std::string &name) const
Check if a given element name is valid for processing by this model object.
Definition: ImagingEnvironment.cpp:175
bool link(std::shared_ptr< Reference > &reference, std::shared_ptr< ome::xml::model::OMEModelObject > &object)
Link a given OME model object to this model object.
Definition: ImagingEnvironment.cpp:273
ImagingEnvironment model object.
Definition: ImagingEnvironment.h:82
std::shared_ptr< ome::xml::model::primitives::OrderedMultimap > getMap()
Get the Map property.
Definition: ImagingEnvironment.cpp:372
void setHumidity(std::shared_ptr< ome::xml::model::primitives::PercentFraction > &humidity)
Set the Humidity property.
Definition: ImagingEnvironment.cpp:365
std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsTemperature > > & getTemperature()
Get the Temperature property.
Definition: ImagingEnvironment.cpp:309
A quantity of a defined unit.
Definition: Quantity.h:57
virtual void asXMLElementInternal(common::xml::dom::Document &document, common::xml::dom::Element &element) const
Transform the object hierarchy rooted at this element to XML.
Definition: ImagingEnvironment.cpp:392
void setTemperature(const std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsTemperature > > &temperature)
Set the Temperature property.
Definition: ImagingEnvironment.cpp:323
const std::string & elementName() const
Get the element name of this model object.
Definition: ImagingEnvironment.cpp:168
ImagingEnvironment & operator=(const ImagingEnvironment &)
Assignment operator (deleted).
std::shared_ptr< ome::xml::model::primitives::PercentFraction > getCO2Percent()
Get the CO2Percent property.
Definition: ImagingEnvironment.cpp:288
void setCO2Percent(std::shared_ptr< ome::xml::model::primitives::PercentFraction > &co2Percent)
Set the CO2Percent property.
Definition: ImagingEnvironment.cpp:302