package ca.josephroque.bowlingcompanion.utilities; /** * Created by Joseph Roque on 2015-07-14. Provides a method for handling a click on the floating action button. */ public interface FloatingActionButtonHandler { /** * Invoked when the floating action button is clicked. */ void onFabClick(); /** * Invoked when the secondary floating action button is clicked. */ void onSecondaryFabClick(); }