Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/mauRepo/MolesManager/trunk/src/ea_model/iso_19115_2006_metadata_corrigendum/data_quality_information/dq_quantitativeresult.py@8091
Revision 8091,
1.3 KB
checked in by mnagni, 8 years ago
(diff) |
The migration process now includes
1) deployment_data files
2) XML document hash
3) full Dojo support
|
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_19115_2006_metadata_corrigendum.data_quality_information.dq_result import DQ_Result |
---|
22 | from ascore.utils import has_value |
---|
23 | |
---|
24 | ''' |
---|
25 | Created on 16-Feb-2012 16:18:03 |
---|
26 | |
---|
27 | @author: mnagni |
---|
28 | ''' |
---|
29 | |
---|
30 | class DQ_QuantitativeResult(DQ_Result): |
---|
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._dq_result = DQ_Result() |
---|
43 | |
---|
44 | self.errorStatistic = None |
---|
45 | self.value = [] |
---|
46 | self.valueUnit = None |
---|
47 | self.valueType = None |
---|
48 | super(DQ_QuantitativeResult, self).__init__() |
---|
49 | |
---|
50 | def __key(self): |
---|
51 | return (self.errorStatistic, self.value, self.valueUnit, self.valueType) |
---|
52 | |
---|
53 | def __eq__(self, y): |
---|
54 | ''' |
---|
55 | Cannot compare classes which do not define a "__key" attribute |
---|
56 | ''' |
---|
57 | if hasattr(self, '_%s__key' % (type(self).__name__)) and hasattr(y, '_%s__key' % (type(y).__name__)): |
---|
58 | return self.__key() == y.__key() |
---|
59 | return id(self) == id(y) |
---|
60 | |
---|
61 | def __hash__(self): |
---|
62 | return hash(self.__key()) |
---|
Note: See
TracBrowser
for help on using the repository browser.