Rev | Line | |
---|
[1227] | 1 | /* LoadSelectionConfigDelegate.as */
|
---|
| 2 |
|
---|
| 3 | package gov.va.med.edp.business.config
|
---|
| 4 | {
|
---|
| 5 | import gov.va.med.edp.business.ResponderChainingDelegate;
|
---|
| 6 |
|
---|
| 7 | import mx.rpc.IResponder;
|
---|
| 8 |
|
---|
| 9 | public class LoadSelectionConfigDelegate extends ResponderChainingDelegate
|
---|
| 10 | {
|
---|
| 11 | public function LoadSelectionConfigDelegate(responder:IResponder)
|
---|
| 12 | {
|
---|
| 13 | super(responder, "loadSelectionConfig");
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | public function loadSelectionConfig(area: int):void
|
---|
| 17 | {
|
---|
| 18 | var params:Object = new Object();
|
---|
| 19 | params.area = area;
|
---|
| 20 | send(params);
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.