KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechRecoContext


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

9 @IID("{580AA49D-7E1E-4809-B8E2-57DA806104B8}")
10 public interface ISpeechRecoContext extends Com4jObject {
11     /**
12      * Recognizer
13      */

14     @VTID(7)
15     ISpeechRecognizer recognizer();
16
17     /**
18      * AudioInInterferenceStatus
19      */

20     @VTID(8)
21     SpeechInterference audioInputInterferenceStatus();
22
23     /**
24      * RequestedUIType
25      */

26     @VTID(9)
27     java.lang.String JavaDoc requestedUIType();
28
29     /**
30      * Voice
31      */

32     @VTID(10)
33     void voice(
34         ISpeechVoice voice);
35
36     /**
37      * Voice
38      */

39     @VTID(11)
40     ISpeechVoice voice();
41
42     /**
43      * AllowVoiceFormatMatchingOnNextSet
44      */

45     @VTID(12)
46     void allowVoiceFormatMatchingOnNextSet(
47         boolean pAllow);
48
49     /**
50      * AllowVoiceFormatMatchingOnNextSet
51      */

52     @VTID(13)
53     boolean allowVoiceFormatMatchingOnNextSet();
54
55     /**
56      * VoicePurgeEvent
57      */

58     @VTID(14)
59     void voicePurgeEvent(
60         SpeechRecoEvents eventInterest);
61
62     /**
63      * VoicePurgeEvent
64      */

65     @VTID(15)
66     SpeechRecoEvents voicePurgeEvent();
67
68     /**
69      * EventInterests
70      */

71     @VTID(16)
72     void eventInterests(
73         SpeechRecoEvents eventInterest);
74
75     /**
76      * EventInterests
77      */

78     @VTID(17)
79     SpeechRecoEvents eventInterests();
80
81     /**
82      * CmdMaxAlternates
83      */

84     @VTID(18)
85     void cmdMaxAlternates(
86         int maxAlternates);
87
88     /**
89      * CmdMaxAlternates
90      */

91     @VTID(19)
92     int cmdMaxAlternates();
93
94     /**
95      * State
96      */

97     @VTID(20)
98     void state(
99         SpeechRecoContextState state);
100
101     /**
102      * State
103      */

104     @VTID(21)
105     SpeechRecoContextState state();
106
107     /**
108      * RetainedAudio
109      */

110     @VTID(22)
111     void retainedAudio(
112         SpeechRetainedAudioOptions option);
113
114     /**
115      * RetainedAudio
116      */

117     @VTID(23)
118     SpeechRetainedAudioOptions retainedAudio();
119
120     /**
121      * RetainedAudioFormat
122      */

123     @VTID(24)
124     void retainedAudioFormat(
125         ISpeechAudioFormat format);
126
127     /**
128      * RetainedAudioFormat
129      */

130     @VTID(25)
131     ISpeechAudioFormat retainedAudioFormat();
132
133     /**
134      * Pause
135      */

136     @VTID(26)
137     void pause();
138
139     /**
140      * Resume
141      */

142     @VTID(27)
143     void resume();
144
145     /**
146      * CreateGrammar
147      */

148     @VTID(28)
149     ISpeechRecoGrammar createGrammar(
150         java.lang.Object JavaDoc grammarId);
151
152     /**
153      * CreateResultFromMemory
154      */

155     @VTID(29)
156     ISpeechRecoResult createResultFromMemory(
157         java.lang.Object JavaDoc resultBlock);
158
159     /**
160      * Bookmark
161      */

162     @VTID(30)
163     void bookmark(
164         SpeechBookmarkOptions options,
165         java.lang.Object JavaDoc streamPos,
166         java.lang.Object JavaDoc bookmarkId);
167
168     /**
169      * SetAdaptationData
170      */

171     @VTID(31)
172     void setAdaptationData(
173         java.lang.String JavaDoc adaptationString);
174
175 }
176
Popular Tags