KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemServicesEx


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

9 @IID("{D2F68443-85DC-427E-91D8-366554CC754C}")
10 public interface ISWbemServicesEx extends ISWbemServices {
11     /**
12      * Save the Object to this Namespace
13      */

14     @VTID(26)
15     ISWbemObjectPath put(
16         ISWbemObjectEx objWbemObject,
17         int iFlags,
18         @MarshalAs(NativeType.Dispatch) com4j.Com4jObject objWbemNamedValueSet);
19
20     /**
21      * Save the Object to this Namespace asynchronously
22      */

23     @VTID(27)
24     void putAsync(
25         ISWbemSink objWbemSink,
26         ISWbemObjectEx objWbemObject,
27         int iFlags,
28         @MarshalAs(NativeType.Dispatch) com4j.Com4jObject objWbemNamedValueSet,
29         @MarshalAs(NativeType.Dispatch) com4j.Com4jObject objWbemAsyncContext);
30
31 }
32
Popular Tags