KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > DISPID_SpeechPhraseAlternate


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