]> SALOME platform Git repositories - tools/eficas.git/blob - Ihm/I_ASSD.py
Salome HOME
ff896ce8cff35906d66fedf42d25c6f8f065e13b
[tools/eficas.git] / Ihm / I_ASSD.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2021   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 "concept " + self.getName() + " type " + self.__class__.__name__
31
32    def __str__(self):
33       return self.getName() or "<None>"
34
35
36 class assd(ASSD):
37    def __convert__(cls,valeur):
38       return valeur
39    __convert__=classmethod(__convert__)
40
41 class GEOM(ASSD):
42    def __convert__(cls,valeur):
43       return valeur
44    __convert__= classmethod(__convert__)
45
46 class geom(GEOM):
47    pass
48
49 class CO(ASSD):
50    def __convert__(cls,valeur):
51       if hasattr(valeur,'_etape') :
52          # valeur est un concept CO qui a ete transforme par typeSDProd
53          if valeur.etape == valeur._etape:
54              # le concept est bien produit par l'etape
55              return valeur
56       raise ValError(u"Pas un concept CO")
57    __convert__=classmethod(__convert__)
58