Back to project page BaseAndroid.
The source code is released under:
MIT License
If you think the Android project BaseAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * File: BaseModel.java/* ww w .jav a 2 s. c o m*/ * CreationDate: 19/08/13 * Author: "M. en C. Javier Silva Perez (JSP)" * Description: * Public abstract class that should be implemented by all the models of the application */ package com.cmovil.baseandroid.model.db; /** * Public abstract class that should be implemented by all the models of the application * * @author "M. en C. Javier Silva Perez (JSP)" * @version 1.0 * @since 19/08/13 */ public interface BaseModel { /** * Return the description that will be shown in the view for these element * * @return A string that will be shown in the UI */ public abstract String getShownDescription(); public Integer getId(); }