Back to project page minak.
The source code is released under:
GNU General Public License
If you think the Android project minak 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 us.minak; /* ww w .ja v a 2 s. c o m*/ public class IMEModifier { public final String name; public final int keycode; public final int metamask; public IMEModifier(String name, int keycode, int metamask) { this.name = name; this.keycode = keycode; this.metamask = metamask; } }