/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ /** * Comment * * @author Bill Burke * @version $Revision: 1.1 $ * **/ public interface complex { char ch(); String string(); float flt(); double dbl(); short shrt(); long lng(); int integer(); boolean bool(); single annotation(); String[] array(); Class clazz(); }