KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemObjectEx


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

9 @IID("{269AD56A-8A67-4129-BC8C-0506DCFE9880}")
10 public interface ISWbemObjectEx extends ISWbemObject {
11     /**
12      * Refresh this Object
13      */

14     @VTID(32)
15     void refresh_(
16         int iFlags,
17         @MarshalAs(NativeType.Dispatch) com4j.Com4jObject objWbemNamedValueSet);
18
19     /**
20      * The collection of System Properties of this Object
21      */

22     @VTID(33)
23     ISWbemPropertySet systemProperties_();
24
25     /**
26      * Retrieve a textual representation of this Object
27      */

28     @VTID(34)
29     java.lang.String JavaDoc getText_(
30         WbemObjectTextFormatEnum iObjectTextFormat,
31         int iFlags,
32         @MarshalAs(NativeType.Dispatch) com4j.Com4jObject objWbemNamedValueSet);
33
34     /**
35      * Set this Object using the supplied textual representation
36      */

37     @VTID(35)
38     void setFromText_(
39         java.lang.String JavaDoc bsText,
40         WbemObjectTextFormatEnum iObjectTextFormat,
41         int iFlags,
42         @MarshalAs(NativeType.Dispatch) com4j.Com4jObject objWbemNamedValueSet);
43
44 }
45
Popular Tags