Ignore:
Timestamp:
10/01/06 09:12:13 (6 years ago)
Author:
sys
Message:

Rename IModuleFacet -> IFacet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Jav_BDP_FS/com/scenari/m/bdp/item/fs/FacetCache.java

    r6720 r6722  
    4444 
    4545import com.scenari.m.bdp.facet.IFacetCache; 
    46 import com.scenari.m.bdp.facet.IModuleFacet; 
     46import com.scenari.m.bdp.facet.IFacet; 
    4747import com.scenari.m.bdp.item.IHItem; 
    4848import com.scenari.m.bdp.item.IHItemDef; 
     
    133133                                                String vSgn = (vIdSubItem.length() > 0) ? vItem.hGetSubItemSgn(vIdSubItem) : vItem.hGetSignature(); 
    134134                                                HParamsQueryString vQs = new HParamsQueryString(vFacetParams); 
    135                                                 String vFacetName = vQs.hGetValue(IModuleFacet.PARAM_FACET); 
     135                                                String vFacetName = vQs.hGetValue(IFacet.PARAM_FACET); 
    136136                                                IHModule vModule = vItem.hGetItemType().hGetSgnModule(vFacetName, vSgn); 
    137                                                 if (vModule == null || vModule instanceof IModuleFacet) { 
    138                                                         vOk = false; 
    139                                                         break; 
    140                                                 } 
    141                                                 IHSource vSrc = ((IModuleFacet) vModule).getFacet(vItem, (vIdSubItem.length() > 0) ? vIdSubItem : null, vQs); 
     137                                                if (vModule == null || vModule instanceof IFacet) { 
     138                                                        vOk = false; 
     139                                                        break; 
     140                                                } 
     141                                                IHSource vSrc = ((IFacet) vModule).getFacet(vItem, (vIdSubItem.length() > 0) ? vIdSubItem : null, vQs); 
    142142                                                if (vSrc == null || vSrc.hGetLastModifWithChilds() != Long.parseLong(vTime)) { 
    143143                                                        vOk = false; 
Note: See TracChangeset for help on using the changeset viewer.