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_19130_sensor_data.location_model.sd_measure import SD_Measure |
---|
22 | from ascore.utils import has_value |
---|
23 | |
---|
24 | ''' |
---|
25 | Created on 16-Feb-2012 16:18:08 |
---|
26 | |
---|
27 | @author: mnagni |
---|
28 | ''' |
---|
29 | |
---|
30 | class SD_Frequency(SD_Measure): |
---|
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._sd_measure = SD_Measure() |
---|
43 | |
---|
44 | self.uncertainty = None |
---|
45 | self.value = None |
---|
46 | self.uom = None |
---|
47 | super(SD_Frequency, self).__init__() |
---|
48 | |
---|
49 | @property |
---|
50 | def uncertainty(self): |
---|
51 | return self._sd_measure.uncertainty |
---|
52 | |
---|
53 | @uncertainty.setter |
---|
54 | def uncertainty(self, value): |
---|
55 | self._sd_measure.uncertainty = value |
---|
56 | |
---|
57 | @property |
---|
58 | def value(self): |
---|
59 | return self._sd_measure.value |
---|
60 | |
---|
61 | @value.setter |
---|
62 | def value(self, value): |
---|
63 | self._sd_measure.value = value |
---|
64 | |
---|
65 | def __key(self): |
---|
66 | return (self.uncertainty, self.value, self.uom) |
---|
67 | |
---|
68 | def __eq__(self, y): |
---|
69 | ''' |
---|
70 | Cannot compare classes which do not define a "__key" attribute |
---|
71 | ''' |
---|
72 | if hasattr(self, '_%s__key' % (type(self).__name__)) and hasattr(y, '_%s__key' % (type(y).__name__)): |
---|
73 | return self.__key() == y.__key() |
---|
74 | return id(self) == id(y) |
---|
75 | |
---|
76 | def __hash__(self): |
---|
77 | return hash(self.__key()) |
---|