From 778d8f81dc2f2e6fe5b9ccb9dfb9aa94b17cb008 2012-11-26 16:37:30 From: Miguel Valdez Date: 2012-11-26 16:37:30 Subject: [PATCH] Los metodos getOperationList y getParameterList han sido aƱadidos --- diff --git a/schainpy/controller/controller.py b/schainpy/controller/controller.py index 3bdf9aa..e5c1b13 100644 --- a/schainpy/controller/controller.py +++ b/schainpy/controller/controller.py @@ -242,6 +242,10 @@ class UPConf(): for opObj in self.opObjList: opObj.makeXml(upElement) + def getOperationList(self): + + return self.opObjList + class OperationConf(): id = 0 @@ -279,6 +283,10 @@ class OperationConf(): for parmObj in self.parmObjList: parmObj.makeXml(opElement) + + def getParameterList(self): + + return self.parmObjList class ParameterConf():