package com.gordonwong.materialsheetfab.animations; /** * Created by Gordon Wong on 7/9/2015. * * Listener for animation events. */ public abstract class AnimationListener { /** * Called when the animation starts. */ public void onStart() { } /** * Called when the animation ends. */ public void onEnd() { } }