# -*- coding: iso-8859-1 -*- # Copyright 20003 - 2008: Julien Bourdaillet (julien.bourdaillet@lip6.fr), Jean-Gabriel Ganascia (jean-gabriel.ganascia@lip6.fr) # This file is part of MEDITE. # # MEDITE 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. # # MEDITE 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. # # You should have received a copy of the GNU General Public License # along with Foobar; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #---------------------------------------------------------------------------- # Nom: informationsChargees.py # Objet: Classe qui regoupe les informations necessaires pour afficher # les transformations et le commentaire d'un couple d'états #---------------------------------------------------------------------------- class InformationsChargees: # Constructeur de la classe def __init__(self,pParametres, pResultat, pCommentaire): # attribut du type parametres, contient les parametres utilises a la comparaison self.__parametres = pParametres # attribut du type Resultat, contient les listes des transformations du fichier xml self.__resultat = pResultat # chaine de caractere contenant le commentaire du fichier xml self.__commentaire = pCommentaire # Methodes d'acces aux attributs privees def getParametres(self): return self.__parametres def getResultat(self): return self.__resultat def getCommentaire(self): return self.__commentaire