Ignore:
Timestamp:
11/17/08 00:00:28 (4 years ago)
Author:
sys
Message:

Renommages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.7pre/Jav_FW/com/scenari/s/fw/util/xml/HExtraitSaxHandler.java

    r12076 r12133  
    5757 */ 
    5858 
    59 public abstract class HExtraitSaxHandler implements ContentHandler, Cloneable { 
     59public abstract class HExtraitSaxHandler implements IFragmentSaxHandler, Cloneable { 
    6060 
    6161        /** Handler père. */ 
     
    7373         * redonner la main. 
    7474         */ 
    75         protected boolean fRootDejaLuParLePere = true; 
     75        protected boolean fRootAlreadyReadByParent = true; 
    7676 
    7777        /** 
     
    139139                        fDepthTag--; 
    140140                        if (fSaxHandlerParent != null) { 
    141                                 if (fRootDejaLuParLePere) { 
     141                                if (fRootAlreadyReadByParent) { 
    142142                                        if (fDepthTag == 0) { 
    143143                                                //On est sur le tag racine. 
     
    208208                if (fSaxHandlerParent == this) fSaxHandlerParent = null; // Sécurité : ce content handler a pu être déjà affecté lors de l'init d'un parsing. 
    209209                pReader.setContentHandler(this); 
    210                 fRootDejaLuParLePere = true; 
     210                fRootAlreadyReadByParent = true; 
    211211                startElement(pUri, pLocalName, pQName, pAttributes); 
    212212        } 
     
    221221                if (fSaxHandlerParent == this) fSaxHandlerParent = null; // Sécurité : ce content handler a pu être déjà affecté lors de l'init d'un parsing. 
    222222                pReader.setContentHandler(this); 
    223                 fRootDejaLuParLePere = false; 
     223                fRootAlreadyReadByParent = false; 
    224224        } 
    225225 
     
    413413                vClone.fSaxHandlerParent = null; 
    414414                vClone.fDepthTag = 0; 
    415                 vClone.fRootDejaLuParLePere = true; 
     415                vClone.fRootAlreadyReadByParent = true; 
    416416                return vClone; 
    417417        } 
Note: See TracChangeset for help on using the changeset viewer.