Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/mauRepo/MolesManager/trunk/src/ea_model/iso_19103_2005_schema_language/basic_types/primitive/numerics/decimal.py@8089
Revision 8089,
1.1 KB
checked in by mnagni, 9 years ago
(diff) |
Played with DOJO
New EA library
Addede CEDA_Process to the migration
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | from sqlalchemy.types import NUMERIC |
---|
22 | from ascore.utils import has_value |
---|
23 | |
---|
24 | ''' |
---|
25 | Created on 14-Feb-2012 17:19:38 |
---|
26 | |
---|
27 | @author: mnagni |
---|
28 | ''' |
---|
29 | |
---|
30 | class Decimal(NUMERIC): |
---|
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._number = NUMERIC() |
---|
43 | |
---|
44 | super(Decimal, self).__init__() |
---|
45 | |
---|
46 | def __key(self): |
---|
47 | return () |
---|
48 | |
---|
49 | def __eq__(self, y): |
---|
50 | ''' |
---|
51 | Cannot compare classes which do not define a "__key" attribute |
---|
52 | ''' |
---|
53 | if hasattr(self, '_%s__key' % (type(self).__name__)) and hasattr(y, '_%s__key' % (type(y).__name__)): |
---|
54 | return self.__key() == y.__key() |
---|
55 | return id(self) == id(y) |
---|
56 | |
---|
57 | def __hash__(self): |
---|
58 | return hash(self.__key()) |
---|
Note: See
TracBrowser
for help on using the repository browser.