ome-xml  5.6.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 
132  operator= (const ImagingEnvironment&) = delete;
134 
135  // -- OMEModelObject API methods --
136 
138  virtual void
139  update(const common::xml::dom::Element& element,
141 
142  public:
143  // -- ImagingEnvironment API methods --
144 
146  bool
147  link (std::shared_ptr<Reference>& reference,
148  std::shared_ptr<ome::xml::model::OMEModelObject>& object);
149 
155  std::shared_ptr<ome::xml::model::primitives::PercentFraction>
156  getCO2Percent ();
157 
163  const std::shared_ptr<ome::xml::model::primitives::PercentFraction>
164  getCO2Percent () const;
165 
171  void
172  setCO2Percent (std::shared_ptr<ome::xml::model::primitives::PercentFraction>& co2Percent);
173 
179  std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsTemperature > >&
180  getTemperature ();
181 
187  const std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsTemperature > >&
188  getTemperature () const;
189 
195  void
197 
203  std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsPressure > >&
204  getAirPressure ();
205 
211  const std::shared_ptr<ome::xml::model::primitives::Quantity<ome::xml::model::enums::UnitsPressure > >&
212  getAirPressure () const;
213 
219  void
221 
227  std::shared_ptr<ome::xml::model::primitives::PercentFraction>
228  getHumidity ();
229 
235  const std::shared_ptr<ome::xml::model::primitives::PercentFraction>
236  getHumidity () const;
237 
243  void
244  setHumidity (std::shared_ptr<ome::xml::model::primitives::PercentFraction>& humidity);
245 
251  std::shared_ptr<ome::xml::model::primitives::OrderedMultimap>
252  getMap ();
253 
259  const std::shared_ptr<ome::xml::model::primitives::OrderedMultimap>
260  getMap () const;
261 
267  void
268  setMap (std::shared_ptr<ome::xml::model::primitives::OrderedMultimap>& map);
269 
270  protected:
271  // Documented in base class.
272  virtual void
274  common::xml::dom::Element& element) const;
275 
276  public:
277  // Documented in superclass.
278  const std::string&
279  getXMLNamespace() const;
280  };
281 
282  }
283  }
284 }
285 
286 #endif // OME_XML_MODEL_IMAGINGENVIRONMENT_H
287 
288 /*
289  * Local Variables:
290  * mode:C++
291  * End:
292  */
OME model interface (abstract top-level container)
Definition: OMEModel.h:61
virtual ~ImagingEnvironment()
Destructor.
Definition: ImagingEnvironment.cpp:162
void setMap(std::shared_ptr< ome::xml::model::primitives::OrderedMultimap > &map)
Set the Map property.
Definition: ImagingEnvironment.cpp:394
std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsPressure > > & getAirPressure()
Get the AirPressure property.
Definition: ImagingEnvironment.cpp:338
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:167
std::shared_ptr< ome::xml::model::primitives::PercentFraction > getHumidity()
Get the Humidity property.
Definition: ImagingEnvironment.cpp:359
void setAirPressure(const std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsPressure > > &airPressure)
Set the AirPressure property.
Definition: ImagingEnvironment.cpp:352
virtual SKIP 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:189
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:471
ImagingEnvironment()
Default constructor.
Definition: ImagingEnvironment.cpp:143
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:183
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:281
ImagingEnvironment model object.
Definition: ImagingEnvironment.h:82
std::shared_ptr< ome::xml::model::primitives::OrderedMultimap > getMap()
Get the Map property.
Definition: ImagingEnvironment.cpp:380
void setHumidity(std::shared_ptr< ome::xml::model::primitives::PercentFraction > &humidity)
Set the Humidity property.
Definition: ImagingEnvironment.cpp:373
std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsTemperature > > & getTemperature()
Get the Temperature property.
Definition: ImagingEnvironment.cpp:317
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:400
void setTemperature(const std::shared_ptr< ome::xml::model::primitives::Quantity< ome::xml::model::enums::UnitsTemperature > > &temperature)
Set the Temperature property.
Definition: ImagingEnvironment.cpp:331
const std::string & elementName() const
Get the element name of this model object.
Definition: ImagingEnvironment.cpp:176
std::shared_ptr< ome::xml::model::primitives::PercentFraction > getCO2Percent()
Get the CO2Percent property.
Definition: ImagingEnvironment.cpp:296
void setCO2Percent(std::shared_ptr< ome::xml::model::primitives::PercentFraction > &co2Percent)
Set the CO2Percent property.
Definition: ImagingEnvironment.cpp:310