Salome HOME
9c9fc94817dc4f69110e0500a62f4a85b944dda2
[tools/eficas.git] / Ihm / I_ASSD.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2013   EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 #from I_VALIDATOR import ValidException
22
23 from __future__ import absolute_import
24 from Extensions.i18n import tr
25 from Extensions.eficas_exception import EficasException
26 from Noyau.N_VALIDATOR import ValError
27
28 class ASSD:
29    def __repr__(self):
30       return tr("concept %(inst_name)s de type %(class_name)s", \
31                        {'inst_name': self.get_name(), \
32                         'class_name': self.__class__.__name__})
33
34    def __str__(self):
35       return self.get_name() or "<None>"
36
37    #def __del__(self):
38    #   print "__del__",self
39
40 class assd(ASSD):
41    def __convert__(cls,valeur):
42       return valeur
43    __convert__=classmethod(__convert__)
44
45 class GEOM(ASSD):
46    def __convert__(cls,valeur):
47       return valeur
48    __convert__=classmethod(__convert__)
49
50 class geom(GEOM):
51    pass
52
53 class CO(ASSD):
54    def __convert__(cls,valeur):
55       if hasattr(valeur,'_etape') :
56          # valeur est un concept CO qui a ete transforme par type_sdprod
57          if valeur.etape == valeur._etape:
58              # le concept est bien produit par l'etape
59              return valeur
60       raise ValError(u"Pas un concept CO")
61    __convert__=classmethod(__convert__)
62