Salome HOME
gestion des listes et label sur 2
[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 Extensions.i18n import tr
24 from Extensions.eficas_exception import EficasException
25 from Noyau.N_VALIDATOR import ValError
26
27 class ASSD:
28    def __repr__(self):
29       return tr("concept %(inst_name)s de type %(class_name)s", \
30                        {'inst_name': self.get_name(), \
31                         'class_name': self.__class__.__name__})
32
33    def __str__(self):
34       return self.get_name() or "<None>"
35
36    #def __del__(self):
37    #   print "__del__",self
38
39 class assd(ASSD):
40    def __convert__(cls,valeur):
41       return valeur
42    __convert__=classmethod(__convert__)
43
44 class GEOM(ASSD):
45    def __convert__(cls,valeur):
46       return valeur
47    __convert__=classmethod(__convert__)
48
49 class geom(GEOM):
50    pass
51
52 class CO(ASSD):
53    def __convert__(cls,valeur):
54       if hasattr(valeur,'_etape') :
55          # valeur est un concept CO qui a ete transforme par type_sdprod
56          if valeur.etape == valeur._etape:
57              # le concept est bien produit par l'etape
58              return valeur
59       raise ValError(u"Pas un concept CO")
60    __convert__=classmethod(__convert__)
61