Changeset 7467 for trunk/Jav_GE/com/scenari/m/ge/agent/HAgentExport.java
- Timestamp:
- 11/23/06 18:21:36 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_GE/com/scenari/m/ge/agent/HAgentExport.java
r7460 r7467 47 47 import com.scenari.m.co.agent.IWADialog; 48 48 import com.scenari.m.co.agent.IWAgent; 49 import com.scenari.m.co.agent.IWAgent AvecLiens;49 import com.scenari.m.co.agent.IWAgentLinker; 50 50 import com.scenari.m.co.agent.IWAgentComputor; 51 51 import com.scenari.m.co.dialog.IHDialog; … … 364 364 vDialogPath.setLength(vDialogPath.lastIndexOf("/@")); 365 365 IWAgent vParent = (IWAgent) vHier.get(j); 366 if (vParent instanceof IWAgent AvecLiens) {367 IWAgent[] vChilds = ((IWAgent AvecLiens) vParent).hGetAgentsLies(pDialog);366 if (vParent instanceof IWAgentLinker) { 367 IWAgent[] vChilds = ((IWAgentLinker) vParent).hGetAgentsLies(pDialog, null); 368 368 if (vChilds != null) { 369 369 boolean vIsBeforeCurrent = true; … … 406 406 */ 407 407 protected String xLookForChildren(IWAgent pAgent, IWADialog pDialog, StringBuffer pDialogPath, HParamsQueryString pParams, boolean pBackward) throws Exception { 408 if (pAgent != null && (pAgent instanceof IWAgent AvecLiens)) {409 IWAgent[] vChildren = ((IWAgent AvecLiens) pAgent).hGetAgentsLies(pDialog);408 if (pAgent != null && (pAgent instanceof IWAgentLinker)) { 409 IWAgent[] vChildren = ((IWAgentLinker) pAgent).hGetAgentsLies(pDialog, null); 410 410 if (vChildren != null) { 411 411 for (int i = (pBackward ? vChildren.length - 1 : 0); (pBackward ? i >= 0 : i < vChildren.length); i += (pBackward ? -1 : +1)) {
Note: See TracChangeset
for help on using the changeset viewer.