source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/business/SwitchLogEntryDelegate.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 640 bytes
Line 
1/* SwitchLogEntryDelegate.as */
2
3package gov.va.med.edp.business
4{
5 import gov.va.med.edp.vo.LogEntryVO;
6
7 import mx.rpc.IResponder;
8
9 public class SwitchLogEntryDelegate extends ResponderChainingDelegate
10 {
11
12 public function SwitchLogEntryDelegate(responder:IResponder)
13 {
14 super(responder, "switchLogEntry");
15 }
16
17 public function switchLogEntry(logID: Number, logEntry: LogEntryVO, choiceTS: String): void
18 {
19 var params:Object = new Object();
20 params.logID = logID;
21 if (logEntry != null) params.logEntry = logEntry.toString();
22 params.choiceTS = choiceTS;
23 send(params);
24 }
25 }
26}
Note: See TracBrowser for help on using the repository browser.