KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechGrammarRuleState


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

9 @IID("{D4286F2C-EE67-45AE-B928-28D695362EDA}")
10 public interface ISpeechGrammarRuleState extends Com4jObject {
11     /**
12      * Rule
13      */

14     @VTID(7)
15     ISpeechGrammarRule rule();
16
17     /**
18      * Transitions
19      */

20     @VTID(8)
21     ISpeechGrammarRuleStateTransitions transitions();
22
23     /**
24      * AddWordTransition
25      */

26     @VTID(9)
27     void addWordTransition(
28         ISpeechGrammarRuleState destState,
29         java.lang.String JavaDoc words,
30         java.lang.String JavaDoc separators,
31         SpeechGrammarWordType type,
32         java.lang.String JavaDoc propertyName,
33         int propertyId,
34         java.lang.Object JavaDoc propertyValue,
35         float weight);
36
37     /**
38      * AddRuleTransition
39      */

40     @VTID(10)
41     void addRuleTransition(
42         ISpeechGrammarRuleState destinationState,
43         ISpeechGrammarRule rule,
44         java.lang.String JavaDoc propertyName,
45         int propertyId,
46         java.lang.Object JavaDoc propertyValue,
47         float weight);
48
49     /**
50      * AddSpecialTransition
51      */

52     @VTID(11)
53     void addSpecialTransition(
54         ISpeechGrammarRuleState destinationState,
55         SpeechSpecialTransitionType type,
56         java.lang.String JavaDoc propertyName,
57         int propertyId,
58         java.lang.Object JavaDoc propertyValue,
59         float weight);
60
61 }
62
Popular Tags