Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/mauRepo/MolesManager/trunk/src/ea_model/iso_19103_2005_schema_language/basic_types/implementation/collections/set.py@8088
Revision 8088,
1.2 KB
checked in by mnagni, 9 years ago
(diff) |
New ea_model library.
No more use the django.forms. Now uses JSON and Dojo(javascript)
DB creation files are now executed as standard python function (before was used a system execution call)
Added an html example to play/work offline with DOJO
|
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_19103_2005_schema_language.basic_types.implementation.collections.collection import Collection |
---|
22 | from ascore.utils import has_value |
---|
23 | |
---|
24 | ''' |
---|
25 | Created on 10-Feb-2012 12:03:13 |
---|
26 | |
---|
27 | @author: mnagni |
---|
28 | ''' |
---|
29 | |
---|
30 | class Set(Collection): |
---|
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._collection = Collection() |
---|
43 | |
---|
44 | self.size = None |
---|
45 | self.elements = [] |
---|
46 | super(Set, self).__init__() |
---|
47 | |
---|
48 | def __key(self): |
---|
49 | return (self.size, self.elements) |
---|
50 | |
---|
51 | def __eq__(self, y): |
---|
52 | ''' |
---|
53 | Cannot compare classes which do not define a "__key" attribute |
---|
54 | ''' |
---|
55 | if hasattr(self, '_%s__key' % (type(self).__name__)) and hasattr(y, '_%s__key' % (type(y).__name__)): |
---|
56 | return self.__key() == y.__key() |
---|
57 | return id(self) == id(y) |
---|
58 | |
---|
59 | def __hash__(self): |
---|
60 | return hash(self.__key()) |
---|
Note: See
TracBrowser
for help on using the repository browser.