Back to project page TreeFrogEngine.
The source code is released under:
MIT License
If you think the Android project TreeFrogEngine 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 com.discretesoftworks.framework; //from w w w . j a v a 2 s . c o m public interface TextHolder { public static final int FA_LEFT = 1; public static final int FA_RIGHT = 3; public static final int FA_CENTER = 2; public String getText(); public void setText(String text); }