KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > DISPID_SpeechGrammarRuleState


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum DISPID_SpeechGrammarRuleState implements ComEnum {
7     DISPID_SGRSRule(1),
8     DISPID_SGRSTransitions(2),
9     DISPID_SGRSAddWordTransition(3),
10     DISPID_SGRSAddRuleTransition(4),
11     DISPID_SGRSAddSpecialTransition(5),
12     ;
13
14     private final int value;
15     DISPID_SpeechGrammarRuleState(int value) { this.value=value; }
16     public int comEnumValue() { return value; }
17 }
18
Popular Tags