Back to project page MorseCode.
The source code is released under:
Custom License You are free to download and edit the source code for personal use but not for commercial app purposes. We are going to use this code to create an app in the future.
If you think the Android project MorseCode 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.csc.morsecode.data; /* w ww .j ava 2 s. c o m*/ public enum Code { EndMsg("Q", 100), EndChar("X", 100), EndWord("W", 100), dot(".", 200), dash("-", 600), unit(" ", 200); //length of time and a pause public final int timeLength; public final String text; Code(String text, int timeLength) { this.text = text; this.timeLength = timeLength; } }