KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechGrammarRuleStateTransition


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

9 @IID("{CAFD1DB1-41D1-4A06-9863-E2E81DA17A9A}")
10 public interface ISpeechGrammarRuleStateTransition extends Com4jObject {
11     /**
12      * Type
13      */

14     @VTID(7)
15     SpeechGrammarRuleStateTransitionType type();
16
17     /**
18      * Text
19      */

20     @VTID(8)
21     java.lang.String JavaDoc text();
22
23     /**
24      * Rule
25      */

26     @VTID(9)
27     ISpeechGrammarRule rule();
28
29     /**
30      * Weight
31      */

32     @VTID(10)
33     java.lang.Object JavaDoc weight();
34
35     /**
36      * PropertyName
37      */

38     @VTID(11)
39     java.lang.String JavaDoc propertyName();
40
41     /**
42      * PropertyId
43      */

44     @VTID(12)
45     int propertyId();
46
47     /**
48      * PropertyValue
49      */

50     @VTID(13)
51     java.lang.Object JavaDoc propertyValue();
52
53     /**
54      * NextState
55      */

56     @VTID(14)
57     ISpeechGrammarRuleState nextState();
58
59 }
60
Popular Tags