Salome HOME
menage
[tools/eficas.git] / Validation / V_UN_PARMI.py
index e8d8e908515b018a4aa1e7c9c28d007b0ec44222..e5375546801f079f5e2fa8d46c247a3ef2a8c697 100644 (file)
@@ -1,48 +1,53 @@
-# -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2013   EDF R&D
+# coding=utf-8
+# person_in_charge: mathieu.courtois at edf.fr
+# ======================================================================
+# COPYRIGHT (C) 1991 - 2015  EDF R&D                  WWW.CODE-ASTER.ORG
+# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
+# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
+# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
+# (AT YOUR OPTION) ANY LATER VERSION.
 #
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License.
+# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
+# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
+# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
+# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
 #
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
+# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
+# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
+#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
 #
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
+# ======================================================================
+
 
 class UN_PARMI:
-   """
-      La règle vérifie que l'on trouve un des mots-clés
-      de la règle parmi les arguments d'un OBJECT.
 
-      Ces arguments sont transmis à la règle pour validation sous la forme
-      d'une liste de noms de mots-clés ou d'un dictionnaire dont
-      les clés sont des noms de mots-clés.
-   """
-   def verif(self,args):
-      """
-          La méthode verif vérifie que l'on trouve un des mos-clés
-          de la liste self.mcs parmi les éléments de args
+    """
+       La règle vérifie que l'on trouve un des mots-clés
+       de la règle parmi les arguments d'un OBJECT.
+
+       Ces arguments sont transmis à la règle pour validation sous la forme
+       d'une liste de noms de mots-clés ou d'un dictionnaire dont
+       les clés sont des noms de mots-clés.
+    """
 
-          args peut etre un dictionnaire ou une liste. Les éléments de args
-          sont soit les éléments de la liste soit les clés du dictionnaire.
-      """
-      #  on compte le nombre de mots cles presents
-      text =''
-      count=0
-      args = self.liste_to_dico(args)
-      for mc in self.mcs:
-        if args.has_key(mc):count=count+1
-      if count != 1:
-          text = u"- Il faut un et un seul mot-clé parmi : "+`self.mcs`+'\n'
-          return text,0
-      return text,1
+    def verif(self, args):
+        """
+            La méthode verif vérifie que l'on trouve un des mos-clés
+            de la liste self.mcs parmi les éléments de args
 
+            args peut etre un dictionnaire ou une liste. Les éléments de args
+            sont soit les éléments de la liste soit les clés du dictionnaire.
+        """
+        #  on compte le nombre de mots cles presents
+        text = ''
+        count = 0
+        args = self.liste_to_dico(args)
+        for mc in self.mcs:
+            if args.has_key(mc):
+                count = count + 1
+        if count != 1:
+            text = u"- Il faut un et un seul mot-clé parmi : " + \
+                `self.mcs`+'\n'
+            return text, 0
+        return text, 1