/** * Sends a message to the presenter if the clear button is clicked * * @author Nicolas Küchler * @pre container != null * @post - * @param event */ @UiHandler("clearBtn") public void onClearBtnClick(final ClickEvent event) { filterPresenter.onClear(); }
/** * Sends a message to the presenter if the search button is clicked * * @author Nicolas Küchler * @pre container != null * @post - * @param event */ @UiHandler("searchBtn") public void onSearchBtnClick(final ClickEvent event) { collapseBox.setIn(false); filterPresenter.onSearch(); }