Interface SearchAction.SearchReceiver
-
- All Known Implementing Classes:
SearchAction.CapturingSearchReceiver,SearchAction.SelectSearchReceiver
- Enclosing class:
- SearchAction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface static interface SearchAction.SearchReceiver
Interfaces implementing this may receive the result of the current search.- Since:
- 10457, 10600 (functional interface), 13950 (signature)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreceiveSearchResult(OsmData<?,?,?,?> ds, java.util.Collection<IPrimitive> result, int foundMatches, SearchSetting setting, java.awt.Component parent)Receive the search result
-
-
-
Method Detail
-
receiveSearchResult
void receiveSearchResult(OsmData<?,?,?,?> ds, java.util.Collection<IPrimitive> result, int foundMatches, SearchSetting setting, java.awt.Component parent)
Receive the search result- Parameters:
ds- The data set searched on.result- The result collection, including the initial collection.foundMatches- The number of matches added to the result.setting- The setting used.parent- parent component
-
-