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