KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechRecoResult


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

9 @IID("{ED2879CF-CED9-4EE6-A534-DE0191D5468D}")
10 public interface ISpeechRecoResult extends Com4jObject {
11     /**
12      * RecoContext
13      */

14     @VTID(7)
15     ISpeechRecoContext recoContext();
16
17     /**
18      * Times
19      */

20     @VTID(8)
21     ISpeechRecoResultTimes times();
22
23     /**
24      * AudioFormat
25      */

26     @VTID(9)
27     void audioFormat(
28         ISpeechAudioFormat format);
29
30     /**
31      * AudioFormat
32      */

33     @VTID(10)
34     ISpeechAudioFormat audioFormat();
35
36     /**
37      * PhraseInfo
38      */

39     @VTID(11)
40     ISpeechPhraseInfo phraseInfo();
41
42     /**
43      * Alternates
44      */

45     @VTID(12)
46     ISpeechPhraseAlternates alternates(
47         int requestCount,
48         int startElement,
49         int elements);
50
51     /**
52      * Audio
53      */

54     @VTID(13)
55     ISpeechMemoryStream audio(
56         int startElement,
57         int elements);
58
59     /**
60      * SpeakAudio
61      */

62     @VTID(14)
63     int speakAudio(
64         int startElement,
65         int elements,
66         SpeechVoiceSpeakFlags flags);
67
68     /**
69      * SaveToMemory
70      */

71     @VTID(15)
72     java.lang.Object JavaDoc saveToMemory();
73
74     /**
75      * DiscardResultInfo
76      */

77     @VTID(16)
78     void discardResultInfo(
79         SpeechDiscardType valueTypes);
80
81 }
82
Popular Tags