KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemPropertySet


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

9 @IID("{DEA0A7B2-D4BA-11D1-8B09-00600806D9B6}")
10 public interface ISWbemPropertySet extends Com4jObject,Iterable JavaDoc<Com4jObject> {
11     @VTID(7)
12     java.util.Iterator JavaDoc<Com4jObject> iterator();
13
14     /**
15      * Get a named Property from this collection
16      */

17     @VTID(8)
18     ISWbemProperty 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 Property to this collection
30      */

31     @VTID(10)
32     ISWbemProperty add(
33         java.lang.String JavaDoc strName,
34         WbemCimtypeEnum iCimType,
35         boolean bIsArray,
36         int iFlags);
37
38     /**
39      * Remove a Property from this collection
40      */

41     @VTID(11)
42     void remove(
43         java.lang.String JavaDoc strName,
44         int iFlags);
45
46 }
47
Popular Tags