KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > ITPlayerButtonModifierKey


1 // GENERATED. DO NOT MODIFY
2
package iTunes.def;
3
4 import com4j.*;
5
6 public enum ITPlayerButtonModifierKey implements ComEnum {
7     ITPlayerButtonModifierKeyNone(0),
8     ITPlayerButtonModifierKeyShift(1),
9     ITPlayerButtonModifierKeyControl(2),
10     ITPlayerButtonModifierKeyAlt(4),
11     ITPlayerButtonModifierKeyCapsLock(8),
12     ;
13
14     private final int value;
15     ITPlayerButtonModifierKey(int value) { this.value=value; }
16     public int comEnumValue() { return value; }
17 }
18
Popular Tags