StandardDerived1.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package test.compliance.standard.support; public class StandardDerived1 extends StandardParent { /** * we have no MBean interface so we inherit from our superclass MBean interface */ public StandardDerived1() { } }
StandardDerived1.java |