Salome HOME
travail sur monPlusieurs
[tools/eficas.git] / Noyau / N_GEOM.py
1 # -*- coding: iso-8859-1 -*-
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
22 """
23
24 """
25 from N_ASSD import ASSD
26
27 class GEOM(ASSD):
28    """
29       Cette classe sert à définir les types de concepts
30       géométriques comme GROUP_NO, GROUP_MA,NOEUD et MAILLE
31
32    """
33    def __init__(self,nom,etape=None,sd=None,reg='oui'):
34       """
35       """
36       self.etape=etape
37       self.sd=sd
38       if etape:
39         self.parent=etape.parent
40       else:
41         self.parent=CONTEXT.get_current_step()
42       if self.parent :
43          self.jdc = self.parent.get_jdc_root()
44       else:
45          self.jdc = None
46
47       if not self.parent:
48         self.id=None
49       elif reg == 'oui' :
50         self.id = self.parent.reg_sd(self)
51       self.nom=nom
52
53    def get_name(self):
54       return self.nom
55
56    def __convert__(cls,valeur):
57       if isinstance(valeur, (str,unicode)) and len(valeur.strip()) <= 8:
58          return valeur.strip()
59       raise ValueError(_(u'On attend une chaine de caractères (de longueur < 8).'))
60    __convert__=classmethod(__convert__)
61
62 class geom(GEOM):pass
63