Ignore:
Timestamp:
03/06/10 14:20:46 (2 years ago)
Author:
sys
Message:

Exp de recherche : ItemSgnRegexp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Jav_Wsp/src/com/scenari/wsp/src/search/ItemSrcTypeExecExp.java

    r14479 r15063  
    6565         * Iterator qui filtre selon une recherche full-text dans l'item. 
    6666         */ 
    67         public class FullTextFilterIt extends PredicateFilterIterator<ISearchResultRowInternal> implements Predicate<ISearchResultRowInternal> { 
     67        public class SrcTypesFilterIt extends PredicateFilterIterator<ISearchResultRowInternal> implements Predicate<ISearchResultRowInternal> { 
    6868 
    6969                protected boolean fResultAttempted; 
     
    7171                protected int fSrcTypesValue; 
    7272 
    73                 public FullTextFilterIt(Iterator<ISearchResultRowInternal> pFrom, int pSrcTypes, boolean pResultAttempted) { 
     73                public SrcTypesFilterIt(Iterator<ISearchResultRowInternal> pFrom, int pSrcTypes, boolean pResultAttempted) { 
    7474                        super(pFrom); 
    7575                        fResultAttempted = pResultAttempted; 
     
    146146        public Iterator<ISearchResultRowInternal> match(Iterator<ISearchResultRowInternal> pUris, ISearchContextInternal pContext) throws Exception { 
    147147                int vSrcTypes = getInt(fSrcTypes.evaluate(pContext)); 
    148                 return new FullTextFilterIt(pUris, vSrcTypes, matchValue()).setPredicateAsSelf(); 
     148                return new SrcTypesFilterIt(pUris, vSrcTypes, matchValue()).setPredicateAsSelf(); 
    149149        } 
    150150 
Note: See TracChangeset for help on using the changeset viewer.