KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechPhraseProperty


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

9 @IID("{CE563D48-961E-4732-A2E1-378A42B430BE}")
10 public interface ISpeechPhraseProperty extends Com4jObject {
11     /**
12      * Name
13      */

14     @VTID(7)
15     java.lang.String JavaDoc name();
16
17     /**
18      * Id
19      */

20     @VTID(8)
21     int id();
22
23     /**
24      * Value
25      */

26     @VTID(9)
27     java.lang.Object JavaDoc value();
28
29     /**
30      * FirstElement
31      */

32     @VTID(10)
33     int firstElement();
34
35     /**
36      * NumberOfElements
37      */

38     @VTID(11)
39     int numberOfElements();
40
41     /**
42      * EngineConfidence
43      */

44     @VTID(12)
45     float engineConfidence();
46
47     /**
48      * Confidence
49      */

50     @VTID(13)
51     SpeechEngineConfidence confidence();
52
53     /**
54      * Parent
55      */

56     @VTID(14)
57     ISpeechPhraseProperty parent();
58
59     /**
60      * Children
61      */

62     @VTID(15)
63     ISpeechPhraseProperties children();
64
65 }
66
Popular Tags