Changeset 9394 for trunk/Jav_GE/com/scenari/m/ge/agent/OutlineWalker.java
- Timestamp:
- 07/25/07 01:11:18 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_GE/com/scenari/m/ge/agent/OutlineWalker.java
r9203 r9394 63 63 64 64 } 65 66 /** 67 * Restreint les noeuds à ceux qui sont matérialisés dans le contenu. 68 */ 69 protected boolean fRestrictToMaterializedNode = false; 65 70 66 71 /** … … 913 918 914 919 protected boolean xIsSkipped(IWAgent pAgt) throws Exception { 915 return (pAgt instanceof IWAgentOutline) && ((IWAgentOutline) pAgt).isSkipped(fCurrentDialog); 920 if(pAgt instanceof IWAgentOutline) { 921 return ((IWAgentOutline) pAgt).isSkipped(fCurrentDialog) || (fRestrictToMaterializedNode && ! ((IWAgentOutline) pAgt).isMaterialized(fCurrentDialog)); 922 } 923 return false; 916 924 } 917 925 … … 1027 1035 return vPos; 1028 1036 } 1037 1038 public boolean isRestrictToMaterializedNode() { 1039 return fRestrictToMaterializedNode; 1040 } 1041 1042 public void setRestrictToMaterializedNode(boolean pRestrictToMaterializedNode) { 1043 fRestrictToMaterializedNode = pRestrictToMaterializedNode; 1044 } 1029 1045 }
Note: See TracChangeset
for help on using the changeset viewer.