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.
/** * MorseRenderer//from w w w . j av a 2 s .co m * * Copyright (c) 2014 Thierry Margenstern under MIT license * http://opensource.org/licenses/MIT */ package tm.android.lampetorche; /** * Render a morse action ( a dot or a dash) * @see tm.android.lampetorche.Torche * @see tm.android.lampetorche.ScreenActivity */ public interface MorseRenderer { void render(MorseAction.morseAction morseAction); }