package net.bible.android.view.util.swipe; /** Swipe left/right handler * * @author Martin Denham [mjdenham at gmail dot com] * @see gnu.lgpl.License for license details.<br> * The copyright to this program is held by it's author. */ public interface SwipeGestureEventHandler { public abstract void onPrevious(); public abstract void onNext(); }