1 package com4j.tlbimp.def;2 3 import com4j.GUID;4 5 /**6 * Commonality between {@link IInterfaceDecl} and {@link IDispInterfaceDecl}.7 * 8 * @author Kohsuke Kawaguchi (kk@kohsuke.org)9 */10 public interface IInterface extends ITypeDecl {11 GUID getGUID();12 int countMethods();13 IMethod getMethod(int idx);14 }15