KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > compliance > standard > support > StandardDerived2


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package test.compliance.standard.support;
9
10 public class StandardDerived2 extends StandardParent implements StandardDerived2MBean
11 {
12    /**
13     * our own MBean interface overrides the StandardParentMBean one we inherited.
14     */

15
16    public void setDerivedValue(String derived)
17    {
18    }
19
20    public String getParentValue()
21    {
22       return null;
23    }
24 }
25
Popular Tags