KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > WbemTimeout


1 // GENERATED. DO NOT MODIFY
2
package wmi;
3
4 import com4j.*;
5
6 /**
7  * Defines timeout constants
8  */

9 public enum WbemTimeout implements ComEnum {
10     wbemTimeoutInfinite(-1),
11     ;
12
13     private final int value;
14     WbemTimeout(int value) { this.value=value; }
15     public int comEnumValue() { return value; }
16 }
17
Popular Tags