Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/mauRepo/CedaMolesModel/trunk/ceda_moles_model/ea_model/iso_19136_gml/basictypes/booleanornilreason.py
Revision 8457,
569 bytes
checked in by mnagni, 9 years ago
(diff) |
Corrected an error in the generation of the classes "synchronize" method.
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | from ea_model.iso_19136_gml.basictypes.nilreason import NilReason |
---|
22 | from sqlalchemy.types import BOOLEAN |
---|
23 | from ascore.asunion import ASUnion |
---|
24 | from ascore.utils import has_value, collectionProofHash |
---|
25 | |
---|
26 | ''' |
---|
27 | Created on 10-Jul-2012 14:15:10 |
---|
28 | |
---|
29 | @author: mnagni |
---|
30 | ''' |
---|
31 | |
---|
32 | class booleanOrNilReason(ASUnion): |
---|
33 | ''' |
---|
34 | Represents a data entity defined in a UML diagram and supposed to |
---|
35 | be persisted in a relational database. |
---|
36 | |
---|
37 | This class has been genererated automatically using the Apache Velocity project. |
---|
38 | ''' |
---|
39 | types = {'value':BOOLEAN,'nilReason':NilReason} |
---|
Note: See
TracBrowser
for help on using the repository browser.