@@ -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 | |
@@ -279,6 +283,10 class OperationConf(): | |||||
279 |
|
283 | |||
280 | for parmObj in self.parmObjList: |
|
284 | for parmObj in self.parmObjList: | |
281 | parmObj.makeXml(opElement) |
|
285 | parmObj.makeXml(opElement) | |
|
286 | ||||
|
287 | def getParameterList(self): | |||
|
288 | ||||
|
289 | return self.parmObjList | |||
282 |
|
290 | |||
283 | class ParameterConf(): |
|
291 | class ParameterConf(): | |
284 |
|
292 |
General Comments 0
You need to be logged in to leave comments.
Login now