KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechRecognizer


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

9 @IID("{2D5F1C0C-BD75-4B08-9478-3B11FEA2586C}")
10 public interface ISpeechRecognizer extends Com4jObject {
11     /**
12      * Recognizer
13      */

14     @VTID(7)
15     void recognizer(
16         ISpeechObjectToken recognizer);
17
18     /**
19      * Recognizer
20      */

21     @VTID(8)
22     ISpeechObjectToken recognizer();
23
24     /**
25      * AllowAudioInputFormatChangesOnNextSet
26      */

27     @VTID(9)
28     void allowAudioInputFormatChangesOnNextSet(
29         boolean allow);
30
31     /**
32      * AllowAudioInputFormatChangesOnNextSet
33      */

34     @VTID(10)
35     boolean allowAudioInputFormatChangesOnNextSet();
36
37     /**
38      * AudioInput
39      */

40     @VTID(11)
41     void audioInput(
42         ISpeechObjectToken audioInput);
43
44     /**
45      * AudioInput
46      */

47     @VTID(12)
48     ISpeechObjectToken audioInput();
49
50     /**
51      * AudioInputStream
52      */

53     @VTID(13)
54     void audioInputStream(
55         ISpeechBaseStream audioInputStream);
56
57     /**
58      * AudioInputStream
59      */

60     @VTID(14)
61     ISpeechBaseStream audioInputStream();
62
63     /**
64      * IsShared
65      */

66     @VTID(15)
67     boolean isShared();
68
69     /**
70      * State
71      */

72     @VTID(16)
73     void state(
74         SpeechRecognizerState state);
75
76     /**
77      * State
78      */

79     @VTID(17)
80     SpeechRecognizerState state();
81
82     /**
83      * Status
84      */

85     @VTID(18)
86     ISpeechRecognizerStatus status();
87
88     /**
89      * Profile
90      */

91     @VTID(19)
92     void profile(
93         ISpeechObjectToken profile);
94
95     /**
96      * Profile
97      */

98     @VTID(20)
99     ISpeechObjectToken profile();
100
101     /**
102      * EmulateRecognition
103      */

104     @VTID(21)
105     void emulateRecognition(
106         java.lang.Object JavaDoc textElements,
107         java.lang.Object JavaDoc elementDisplayAttributes,
108         int languageId);
109
110     /**
111      * CreateRecoContext
112      */

113     @VTID(22)
114     ISpeechRecoContext createRecoContext();
115
116     /**
117      * GetFormat
118      */

119     @VTID(23)
120     ISpeechAudioFormat getFormat(
121         SpeechFormatType type);
122
123     /**
124      * SetPropertyNumber
125      */

126     @VTID(24)
127     boolean setPropertyNumber(
128         java.lang.String JavaDoc name,
129         int value);
130
131     /**
132      * GetPropertyNumber
133      */

134     @VTID(25)
135     boolean getPropertyNumber(
136         java.lang.String JavaDoc name,
137         Holder<Integer JavaDoc> value);
138
139     /**
140      * SetPropertyString
141      */

142     @VTID(26)
143     boolean setPropertyString(
144         java.lang.String JavaDoc name,
145         java.lang.String JavaDoc value);
146
147     /**
148      * GetPropertyString
149      */

150     @VTID(27)
151     boolean getPropertyString(
152         java.lang.String JavaDoc name,
153         Holder<java.lang.String JavaDoc> value);
154
155     /**
156      * IsUISupported
157      */

158     @VTID(28)
159     boolean isUISupported(
160         java.lang.String JavaDoc typeOfUI,
161         java.lang.Object JavaDoc extraData);
162
163     /**
164      * DisplayUI
165      */

166     @VTID(29)
167     void displayUI(
168         int hWndParent,
169         java.lang.String JavaDoc title,
170         java.lang.String JavaDoc typeOfUI,
171         java.lang.Object JavaDoc extraData);
172
173     /**
174      * GetRecognizers
175      */

176     @VTID(30)
177     ISpeechObjectTokens getRecognizers(
178         java.lang.String JavaDoc requiredAttributes,
179         java.lang.String JavaDoc optionalAttributes);
180
181     /**
182      * GetAudioInputs
183      */

184     @VTID(31)
185     ISpeechObjectTokens getAudioInputs(
186         java.lang.String JavaDoc requiredAttributes,
187         java.lang.String JavaDoc optionalAttributes);
188
189     /**
190      * GetProfiles
191      */

192     @VTID(32)
193     ISpeechObjectTokens getProfiles(
194         java.lang.String JavaDoc requiredAttributes,
195         java.lang.String JavaDoc optionalAttributes);
196
197 }
198
Popular Tags