Back to project page sdk-katapayadi.
The source code is released under:
GNU Lesser General Public License
If you think the Android project sdk-katapayadi listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.silpa.katapayadi; //ww w . j ava2s . c o m import java.util.List; /** * Created by sujith on 16/6/14. */ public interface KatapayadiInterface { /** * This function is used to get katapayadi number * * @return number in string format */ public String getKatapayadiNumber(); /** * This function is used to get swarasthanas * * @return List of swarasthanas */ public List<String> getSwarasthanas(); /** * This function gives name of the module * * @return name of module */ public String getModuleName(); /** * This function gives a brief description of the module * * @return brief information regarding the module */ public String getModuleInformation(); }