Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/mauRepo/CedaMolesModel/trunk/ceda_moles_model/ea_model/iso_19136_gml/basictypes/measurelist.py@8437
Revision 8437,
1.3 KB
checked in by mnagni, 9 years ago
(diff) |
Added a new function to ascore.utils in order to synchronize classes before committing to database
The following constraints has been added to the official model:
MO_ObservationCollection:member:CEDA_Observation
MO_ObservationCollection:phenomenonTime:TM_GeometricPrimitive
MO_Project:observationCollection:CEDA_ObservationCollection
MO_Observation:result:CEDA_Result
MO_Observation:inSupportOf:CEDA_Project
MO_Project:subProject:CEDA_Project
OM_Observation:procedure:CEDA_Process
OM_Observation:phenomenonTime:TM_GeometricPrimitive
MO_ResponsiblePartyFunctionValue:CEDA_RoleValue
|
-
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.doublelist import doubleList |
---|
22 | from ascore.utils import has_value, collectionProofHash |
---|
23 | |
---|
24 | ''' |
---|
25 | Created on 06-Jul-2012 07:43:08 |
---|
26 | |
---|
27 | @author: mnagni |
---|
28 | ''' |
---|
29 | |
---|
30 | class MeasureList(doubleList): |
---|
31 | ''' |
---|
32 | Represents a data entity defined in a UML diagram and supposed to |
---|
33 | be persisted in a relational database. |
---|
34 | |
---|
35 | This class has been genererated automatically using the Apache Velocity project. |
---|
36 | ''' |
---|
37 | ''' |
---|
38 | Please note that any access to the inner attributes should be done using |
---|
39 | the given get/set methods and NOT accessing them directly. |
---|
40 | ''' |
---|
41 | def __init__(self): |
---|
42 | self._doublelist = doubleList() |
---|
43 | |
---|
44 | self.uom = None |
---|
45 | super(MeasureList, self).__init__() |
---|
46 | @property |
---|
47 | def list(self): |
---|
48 | return self._doublelist.list |
---|
49 | |
---|
50 | @list.setter |
---|
51 | def list(self, value): |
---|
52 | self._doublelist.list = value |
---|
53 | |
---|
54 | def synchronize(self): |
---|
55 | pass |
---|
56 | |
---|
57 | def __key(self): |
---|
58 | return (self.list, self.uom) |
---|
59 | |
---|
60 | def __eq__(self, y): |
---|
61 | if type(self) != type(y): |
---|
62 | return False |
---|
63 | ''' |
---|
64 | Cannot compare classes which do not define a "__key" attribute |
---|
65 | ''' |
---|
66 | if hasattr(self, '_%s__key' % (type(self).__name__)) and hasattr(y, '_%s__key' % (type(y).__name__)): |
---|
67 | return self.__key() == y.__key() |
---|
68 | return id(self) == id(y) |
---|
69 | |
---|
70 | def __hash__(self): |
---|
71 | return collectionProofHash(self.__key()) |
---|
Note: See
TracBrowser
for help on using the repository browser.