Back to project page LampeTorche.
The source code is released under:
MIT License
If you think the Android project LampeTorche listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * MorseAction//from w w w . j a va2s .c o m * * Copyright (c) 2014 Thierry Margenstern under MIT license * http://opensource.org/licenses/MIT */ package tm.android.lampetorche; /** * To be notified of morse action (dot or dash) * @see tm.android.lampetorche.Morse * @see tm.android.lampetorche.SosWorker */ public interface MorseAction { enum morseAction {LOUD,SILENCE} void doAction(morseAction morseAction) ; }