Back to project page sdk-syllabifier.
The source code is released under:
GNU Lesser General Public License
If you think the Android project sdk-syllabifier 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.syllabifier; //w w w . j a v a 2 s. c o m import java.util.List; /** * Created by sujith on 14/6/14. */ public interface SyllabifierInterface { /** * This function returns syllabified text from given view * * @return syllabified text */ public String getSyllabifiedText(); /** * This function returns list of syllables of text from given view * * @return list of syllables */ public List<String> getSyllables(); /** * This function returns module name * * @return module name */ public String getModuleName(); /** * This function returns module information * * @return module information */ public String getModuleInformation(); }