##// END OF EJS Templates
Los metodos getOperationList y getParameterList han sido añadidos
Miguel Valdez -
r182:778d8f81dc2f
parent child
Show More
@@ -242,6 +242,10 class UPConf():
242 for opObj in self.opObjList:
242 for opObj in self.opObjList:
243 opObj.makeXml(upElement)
243 opObj.makeXml(upElement)
244
244
245 def getOperationList(self):
246
247 return self.opObjList
248
245 class OperationConf():
249 class OperationConf():
246
250
247 id = 0
251 id = 0
@@ -280,6 +284,10 class OperationConf():
280 for parmObj in self.parmObjList:
284 for parmObj in self.parmObjList:
281 parmObj.makeXml(opElement)
285 parmObj.makeXml(opElement)
282
286
287 def getParameterList(self):
288
289 return self.parmObjList
290
283 class ParameterConf():
291 class ParameterConf():
284
292
285 id = None
293 id = None
General Comments 0
You need to be logged in to leave comments. Login now