KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > DISPID_SpeechGrammarRuleStateTransition


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum DISPID_SpeechGrammarRuleStateTransition implements ComEnum {
7     DISPID_SGRSTType(1),
8     DISPID_SGRSTText(2),
9     DISPID_SGRSTRule(3),
10     DISPID_SGRSTWeight(4),
11     DISPID_SGRSTPropertyName(5),
12     DISPID_SGRSTPropertyId(6),
13     DISPID_SGRSTPropertyValue(7),
14     DISPID_SGRSTNextState(8),
15     ;
16
17     private final int value;
18     DISPID_SpeechGrammarRuleStateTransition(int value) { this.value=value; }
19     public int comEnumValue() { return value; }
20 }
21
Popular Tags