1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2013 EDF R&D
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.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #from I_VALIDATOR import ValidException
23 from Extensions.i18n import tr
24 from Extensions.eficas_exception import EficasException
25 from Noyau.N_VALIDATOR import ValError
29 return tr("concept %(inst_name)s de type %(class_name)s", \
30 {'inst_name': self.get_name(), \
31 'class_name': self.__class__.__name__})
34 return self.get_name() or "<None>"
37 # print "__del__",self
40 def __convert__(cls,valeur):
42 __convert__=classmethod(__convert__)
45 def __convert__(cls,valeur):
47 __convert__=classmethod(__convert__)
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
59 raise ValError(u"Pas un concept CO")
60 __convert__=classmethod(__convert__)