##// 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 242 for opObj in self.opObjList:
243 243 opObj.makeXml(upElement)
244 244
245 def getOperationList(self):
246
247 return self.opObjList
248
245 249 class OperationConf():
246 250
247 251 id = 0
@@ -279,6 +283,10 class OperationConf():
279 283
280 284 for parmObj in self.parmObjList:
281 285 parmObj.makeXml(opElement)
286
287 def getParameterList(self):
288
289 return self.parmObjList
282 290
283 291 class ParameterConf():
284 292
General Comments 0
You need to be logged in to leave comments. Login now