1 # -*- coding: iso-8859-1 -*-
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
22 Ce module contient la classe MCFACT qui sert à controler la valeur
23 d'un mot-clé facteur par rapport à sa définition portée par un objet
29 class MCFACT(N_MCCOMPO.MCCOMPO):
33 def __init__(self,val,definition,nom,parent):
36 - val : valeur du mot clé simple
41 self.definition=definition
45 self.valeur = self.GETVAL(self.val)
47 self.jdc = self.parent.jdc
48 self.niveau = self.parent.niveau
49 self.etape = self.parent.etape
51 # Le mot cle a été créé sans parent
55 self.mc_liste=self.build_mc()
59 Retourne la valeur effective du mot-clé en fonction
60 de la valeur donnée. Defaut si val == None
62 if (val is None and hasattr(self.definition,'defaut')) :
63 return self.definition.defaut
69 Retourne la "valeur" d'un mot-clé facteur qui est l'objet lui-meme.
70 Cette valeur est utilisée lors de la création d'un contexte
71 d'évaluation d'expressions à l'aide d'un interpréteur Python
77 Une autre méthode qui retourne une "autre" valeur du mot clé facteur.
78 Elle est utilisée par la méthode get_mocle
82 def __getitem__(self,key):
84 Dans le cas d un mot cle facteur unique on simule une liste de
87 if key == 0:return self
88 return self.get_mocle(key)
90 def accept(self,visitor):
92 Cette methode permet de parcourir l'arborescence des objets
93 en utilisant le pattern VISITEUR
95 visitor.visitMCFACT(self)
98 return self.definition.class_instance(val=None,nom=self.nom,
99 definition=self.definition,parent=self.parent)