/* This file is part of SlumDroid <https://code.google.com/p/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) 2013-2015 Gennaro Imparato */ package it.slumdroid.droidmodels.model; // TODO: Auto-generated Javadoc /** * The Interface UserInteraction. */ public interface UserInteraction extends WrapperInterface { /** * Gets the type. * * @return the type */ public String getType(); /** * Sets the type. * * @param type the new type */ public void setType(String type); /** * Gets the widget id. * * @return the widget id */ public String getWidgetId(); /** * Sets the widget id. * * @param widgetId the new widget id */ public void setWidgetId(String widgetId); /** * Gets the value. * * @return the value */ public String getValue(); /** * Sets the value. * * @param value the new value */ public void setValue(String value); /** * Gets the id. * * @return the id */ public String getId(); /** * Sets the id. * * @param id the new id */ public void setId(String id); }