1 package com4j.tlbimp.def;2 3 import com4j.IID;4 import com4j.VTID;5 6 /**7 * @author Kohsuke Kawaguchi (kk@kohsuke.org)8 */9 @IID("{BA8E1931-1249-4863-A436-332FA88F645B}")10 public interface IPrimitiveType extends IType {11 @VTID(3)12 String getName();13 14 @VTID(4)15 VarType getVarType();16 }17