KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechRuleAttributes


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum SpeechRuleAttributes implements ComEnum {
7     SRATopLevel(1),
8     SRADefaultToActive(2),
9     SRAExport(4),
10     SRAImport(8),
11     SRAInterpreter(16),
12     SRADynamic(32),
13     ;
14
15     private final int value;
16     SpeechRuleAttributes(int value) { this.value=value; }
17     public int comEnumValue() { return value; }
18 }
19
Popular Tags