- Timestamp:
- 11/17/08 00:00:28 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7pre/Jav_FW/com/scenari/s/fw/util/xml/HExtraitSaxHandler.java
r12076 r12133 57 57 */ 58 58 59 public abstract class HExtraitSaxHandler implements ContentHandler, Cloneable {59 public abstract class HExtraitSaxHandler implements IFragmentSaxHandler, Cloneable { 60 60 61 61 /** Handler père. */ … … 73 73 * redonner la main. 74 74 */ 75 protected boolean fRoot DejaLuParLePere= true;75 protected boolean fRootAlreadyReadByParent = true; 76 76 77 77 /** … … 139 139 fDepthTag--; 140 140 if (fSaxHandlerParent != null) { 141 if (fRoot DejaLuParLePere) {141 if (fRootAlreadyReadByParent) { 142 142 if (fDepthTag == 0) { 143 143 //On est sur le tag racine. … … 208 208 if (fSaxHandlerParent == this) fSaxHandlerParent = null; // Sécurité : ce content handler a pu être déjà affecté lors de l'init d'un parsing. 209 209 pReader.setContentHandler(this); 210 fRoot DejaLuParLePere= true;210 fRootAlreadyReadByParent = true; 211 211 startElement(pUri, pLocalName, pQName, pAttributes); 212 212 } … … 221 221 if (fSaxHandlerParent == this) fSaxHandlerParent = null; // Sécurité : ce content handler a pu être déjà affecté lors de l'init d'un parsing. 222 222 pReader.setContentHandler(this); 223 fRoot DejaLuParLePere= false;223 fRootAlreadyReadByParent = false; 224 224 } 225 225 … … 413 413 vClone.fSaxHandlerParent = null; 414 414 vClone.fDepthTag = 0; 415 vClone.fRoot DejaLuParLePere= true;415 vClone.fRootAlreadyReadByParent = true; 416 416 return vClone; 417 417 }
Note: See TracChangeset
for help on using the changeset viewer.