KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > wmi > ISWbemMethod


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

9 @IID("{422E8E90-D955-11D1-8B09-00600806D9B6}")
10 public interface ISWbemMethod extends Com4jObject {
11     /**
12      * The name of this Method
13      */

14     @VTID(7)
15     java.lang.String JavaDoc name();
16
17     /**
18      * The originating class of this Method
19      */

20     @VTID(8)
21     java.lang.String JavaDoc origin();
22
23     /**
24      * The in parameters for this Method.
25      */

26     @VTID(9)
27     ISWbemObject inParameters();
28
29     /**
30      * The out parameters for this Method.
31      */

32     @VTID(10)
33     ISWbemObject outParameters();
34
35     /**
36      * The collection of Qualifiers of this Method.
37      */

38     @VTID(11)
39     ISWbemQualifierSet qualifiers_();
40
41 }
42
Popular Tags