- Timestamp:
- 11/23/06 18:21:36 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_GE/com/scenari/m/ge/generateur/GeneratorBase.java
r7460 r7467 575 575 public String resultatAgent(String pUrl, Object pArgument) throws Exception { 576 576 IWAgent vAgent = (pUrl != null) ? ((IWADialog) fCurrentDialog).hGoToAgent(pUrl) : ((IWADialog) fCurrentDialog).hGetAgent(); 577 if (vAgent != null && vAgent instanceof IWAgentComputor) { return ((IWAgentComputor) vAgent).computeAs Data(fCurrentDialog, pArgument).getString(); }577 if (vAgent != null && vAgent instanceof IWAgentComputor) { return ((IWAgentComputor) vAgent).computeAsString(fCurrentDialog, pArgument); } 578 578 return ""; 579 579 } … … 603 603 if (vDialog != null && vDialog instanceof IWADialog) { 604 604 IWAgent vAgent = ((IWADialog) vDialog).hGetAgent(); 605 if (vAgent instanceof IWAgentComputor) { return ((IWAgentComputor) vAgent).computeAs Data(vDialog, pArgument).getString(); }605 if (vAgent instanceof IWAgentComputor) { return ((IWAgentComputor) vAgent).computeAsString(vDialog, pArgument); } 606 606 } 607 607 return "";
Note: See TracChangeset
for help on using the changeset viewer.