- Timestamp:
- 03/06/10 14:20:46 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_Wsp/src/com/scenari/wsp/src/search/ItemSrcTypeExecExp.java
r14479 r15063 65 65 * Iterator qui filtre selon une recherche full-text dans l'item. 66 66 */ 67 public class FullTextFilterIt extends PredicateFilterIterator<ISearchResultRowInternal> implements Predicate<ISearchResultRowInternal> {67 public class SrcTypesFilterIt extends PredicateFilterIterator<ISearchResultRowInternal> implements Predicate<ISearchResultRowInternal> { 68 68 69 69 protected boolean fResultAttempted; … … 71 71 protected int fSrcTypesValue; 72 72 73 public FullTextFilterIt(Iterator<ISearchResultRowInternal> pFrom, int pSrcTypes, boolean pResultAttempted) {73 public SrcTypesFilterIt(Iterator<ISearchResultRowInternal> pFrom, int pSrcTypes, boolean pResultAttempted) { 74 74 super(pFrom); 75 75 fResultAttempted = pResultAttempted; … … 146 146 public Iterator<ISearchResultRowInternal> match(Iterator<ISearchResultRowInternal> pUris, ISearchContextInternal pContext) throws Exception { 147 147 int vSrcTypes = getInt(fSrcTypes.evaluate(pContext)); 148 return new FullTextFilterIt(pUris, vSrcTypes, matchValue()).setPredicateAsSelf();148 return new SrcTypesFilterIt(pUris, vSrcTypes, matchValue()).setPredicateAsSelf(); 149 149 } 150 150
Note: See TracChangeset
for help on using the changeset viewer.