Salome HOME
legere difference ds VARIABLES_TO_BE...
[tools/eficas.git] / Noyau / N_CO.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 __future__ import absolute_import
22 from .N_ASSD import ASSD
23 from .N_Exception import AsException
24 from .N_VALIDATOR import ValError
25 from . import N_utils
26
27 #from asojb import AsBase
28
29
30 #class CO(ASSD, AsBase):
31 class CO(ASSD) :
32
33     def __init__(self, nom):
34         ASSD.__init__(self, etape=None, sd=None, reg='oui')
35         self._as_co = 1
36         #
37         #  On demande le nommage du concept
38         #
39         if self.parent:
40             try:
41                 self.parent.NommerSdprod(self, nom)
42             except AsException as e:
43                 appel = N_utils.callee_where(niveau=2)
44                 raise AsException(
45                     "Concept CO, fichier: ", appel[1], " ligne : ", appel[0], '\n', e)
46         else:
47             self.nom = nom
48
49     def __convert__(cls, valeur):
50         if valeur.is_typco():
51             return valeur
52         raise ValError("Pas un concept CO")
53     __convert__ = classmethod(__convert__)