KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com4j > tlbimp > def > IImplementedInterfaceDecl


1 package com4j.tlbimp.def;
2
3 import com4j.IID;
4 import com4j.VTID;
5 import com4j.Com4jObject;
6
7 /**
8  * interface implemented by a co-class
9  */

10 @IID("{9F6412CF-9B35-4B72-A8B9-AF83491E5B73}")
11 public interface IImplementedInterfaceDecl extends Com4jObject {
12     /**
13      * is this the default source/sink?
14      */

15     @VTID(3)
16     boolean isDefault();
17
18     /**
19      * is this a sink?
20      */

21     @VTID(4)
22     boolean isSource();
23
24     /**
25      * is restricted?
26      */

27     @VTID(5)
28     boolean isRestricted();
29
30     /**
31      * gets the definition of the interface
32      */

33     @VTID(6)
34     ITypeDecl getType();
35
36 }
37
Popular Tags