KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechAudioFormat


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 /**
7  * ISpeechAudioFormat Interface
8  */

9 @IID("{E6E9C590-3E18-40E3-8299-061F98BDE7C7}")
10 public interface ISpeechAudioFormat extends Com4jObject {
11     /**
12      * Type
13      */

14     @VTID(7)
15     SpeechAudioFormatType type();
16
17     /**
18      * Type
19      */

20     @VTID(8)
21     void type(
22         SpeechAudioFormatType audioFormat);
23
24     /**
25      * Guid
26      */

27     @VTID(9)
28     java.lang.String JavaDoc guid();
29
30     /**
31      * Guid
32      */

33     @VTID(10)
34     void guid(
35         java.lang.String JavaDoc guid);
36
37     /**
38      * GetWaveFormatEx
39      */

40     @VTID(11)
41     ISpeechWaveFormatEx getWaveFormatEx();
42
43     /**
44      * SetWaveFormatEx
45      */

46     @VTID(12)
47     void setWaveFormatEx(
48         ISpeechWaveFormatEx waveFormatEx);
49
50 }
51
Popular Tags