/* This file is part of SlumDroid <https://github.com/slumdroid/slumdroid>. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License <http://www.gnu.org/licenses/gpl-3.0.txt> * for more details. * * Copyright (C) 2012-2016 Gennaro Imparato */ package it.slumdroid.tool.model; import it.slumdroid.droidmodels.model.ActivityState; // TODO: Auto-generated Javadoc /** * The listener interface for receiving stateDiscovery events. * The class that is interested in processing a stateDiscovery * event implements this interface, and the object created * with that class is registered with a component using the * component's <code>addStateDiscoveryListener<code> method. When * the stateDiscovery event occurs, that object's appropriate * method is invoked. * * @see StateDiscoveryEvent */ public interface StateDiscoveryListener { /** * On new state. * * @param newState the new state */ public void onNewState(ActivityState newState); }