meerkat-java/voting-station-gui/src/polling_station_dashboard/search/SearchHandler.java

21 lines
449 B
Java
Raw Normal View History

package polling_station_dashboard.search;
import javafx.event.Event;
import javafx.event.EventHandler;
/**
* Created by Vladimir Eliezer Tokarev on 12/06/2016.
* SearchHandler trying to fetch wanted users by given strings (VotersFetcher) and then
* Starts the eddit/add panel based on what the VotersFetcher Have fetched.
*/
public class SearchHandler implements EventHandler {
@Override
public void handle(Event event) {
}
}