Back to project page android-continuous-voice.
The source code is released under:
Copyright (c) 2015, Marius Fink - Universit?t Hamburg All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following ...
If you think the Android project android-continuous-voice 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 de.uniHamburg.informatik.continuousvoice.services.recognition; /* ww w.j a v a2s .c o m*/ public interface IRecognizerControl { public void initialize(); public void start(); public boolean isRunning(); public void stop(); public void shutdown(); public void addStatusListener(IStatusListener sl); public void addTranscriptionListener(ITranscriptionResultListener trl); }