|
Urbi SDK Remote for Java
2.7.5
|
00001 /* 00002 * Copyright (C) 2010-2011, Gostai S.A.S. 00003 * 00004 * This software is provided "as is" without warranty of any kind, 00005 * either expressed or implied, including but not limited to the 00006 * implied warranties of fitness for a particular purpose. 00007 * 00008 * See the LICENSE file for more information. 00009 */ 00010 00011 package urbi; 00012 00013 public interface SoundAction 00014 { 00015 public void captureAudio(); 00016 00017 public void playAudio(); 00018 00019 public void stopAudio(); 00020 00021 public void saveAudio(String path); 00022 }