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 __future__ import absolute_import
24 from Extensions.i18n import tr
25 from Extensions.eficas_exception import EficasException
26 from Noyau.N_VALIDATOR import ValError
30 return tr("concept %(inst_name)s de type %(class_name)s", \
31 {'inst_name': self.get_name(), \
32 'class_name': self.__class__.__name__})
35 return self.get_name() or "<None>"
38 # print "__del__",self
41 def __convert__(cls,valeur):
43 __convert__=classmethod(__convert__)
46 def __convert__(cls,valeur):
48 __convert__=classmethod(__convert__)
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
60 raise ValError(u"Pas un concept CO")
61 __convert__=classmethod(__convert__)