/* SwitchLogEntryDelegate.as */ package gov.va.med.edp.business { import gov.va.med.edp.vo.LogEntryVO; import mx.rpc.IResponder; public class SwitchLogEntryDelegate extends ResponderChainingDelegate { public function SwitchLogEntryDelegate(responder:IResponder) { super(responder, "switchLogEntry"); } public function switchLogEntry(logID: Number, logEntry: LogEntryVO, choiceTS: String): void { var params:Object = new Object(); params.logID = logID; if (logEntry != null) params.logEntry = logEntry.toString(); params.choiceTS = choiceTS; send(params); } } }