KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemProperty


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

9 @IID("{1A388F98-D4BA-11D1-8B09-00600806D9B6}")
10 public interface ISWbemProperty extends Com4jObject {
11     /**
12      * The value of this Property
13      */

14     @VTID(7)
15     java.lang.Object JavaDoc value();
16
17     /**
18      * The value of this Property
19      */

20     @VTID(8)
21     void value(
22         java.lang.Object JavaDoc varValue);
23
24     /**
25      * The name of this Property
26      */

27     @VTID(9)
28     java.lang.String JavaDoc name();
29
30     /**
31      * Indicates whether this Property is local or propagated
32      */

33     @VTID(10)
34     boolean isLocal();
35
36     /**
37      * The originating class of this Property
38      */

39     @VTID(11)
40     java.lang.String JavaDoc origin();
41
42     /**
43      * The CIM Type of this Property
44      */

45     @VTID(12)
46     WbemCimtypeEnum cIMType();
47
48     /**
49      * The collection of Qualifiers of this Property
50      */

51     @VTID(13)
52     ISWbemQualifierSet qualifiers_();
53
54     /**
55      * Indicates whether this Property is an array type
56      */

57     @VTID(14)
58     boolean isArray();
59
60 }
61
Popular Tags