1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package implementz;8 9 /**10 *11 * @author <a HREF="mailto:kabir.khan@jboss.org">Kabir Khan</a>12 * @version $Revision: 44138 $13 */14 public interface ImplementingSuperInterface15 {16 void methodFromImplementingSuper();17 }18 19 20 21