Android Open Source - sdk-syllabifier Syllabifier Interface






From Project

Back to project page sdk-syllabifier.

License

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.

Java Source Code

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();
}




Java Source Code List

org.silpa.syllabifier.SyllabifierEditText.java
org.silpa.syllabifier.SyllabifierInterface.java
org.silpa.syllabifier.SyllabifierTextView.java
org.silpa.syllabifier.Syllabifier.java