KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > DISPID_SpeechGrammarRules


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum DISPID_SpeechGrammarRules implements ComEnum {
7     DISPID_SGRsCount(1),
8     DISPID_SGRsDynamic(2),
9     DISPID_SGRsAdd(3),
10     DISPID_SGRsCommit(4),
11     DISPID_SGRsCommitAndSave(5),
12     DISPID_SGRsFindRule(6),
13     DISPID_SGRsItem(0),
14     DISPID_SGRs_NewEnum(-4),
15     ;
16
17     private final int value;
18     DISPID_SpeechGrammarRules(int value) { this.value=value; }
19     public int comEnumValue() { return value; }
20 }
21
Popular Tags