KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemNamedValueSet


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

9 @IID("{CF2376EA-CE8C-11D1-8B05-00600806D9B6}")
10 public interface ISWbemNamedValueSet extends Com4jObject,Iterable JavaDoc<Com4jObject> {
11     @VTID(7)
12     java.util.Iterator JavaDoc<Com4jObject> iterator();
13
14     /**
15      * Get a named value from this Collection
16      */

17     @VTID(8)
18     ISWbemNamedValue item(
19         java.lang.String JavaDoc strName,
20         int iFlags);
21
22     /**
23      * The number of items in this collection
24      */

25     @VTID(9)
26     int count();
27
28     /**
29      * Add a named value to this collection
30      */

31     @VTID(10)
32     ISWbemNamedValue add(
33         java.lang.String JavaDoc strName,
34         java.lang.Object JavaDoc varValue,
35         int iFlags);
36
37     /**
38      * Remove a named value from this collection
39      */

40     @VTID(11)
41     void remove(
42         java.lang.String JavaDoc strName,
43         int iFlags);
44
45     /**
46      * Make a copy of this collection
47      */

48     @VTID(12)
49     ISWbemNamedValueSet clone();
50
51     /**
52      * Delete all items in this collection
53      */

54     @VTID(13)
55     void deleteAll();
56
57 }
58
Popular Tags