Methods Summary |
---|
public void | emptyParamMethod()
|
public java.lang.String | getColor()
return "test";
|
protected java.lang.Class | getImplementingClass()Every resource MBean should override this method to execute specific
operations on the MBean. This method is enhanced in 8.0. It was a no-op
in 7.0. In 8.0, it is modified to invoke the actual method through
reflection.
return ( this.getClass() );
|
protected java.lang.Object | getImplementingMBean()Reflection requires the implementing object.
return ( this );
|
public javax.management.MBeanInfo | getMBeanInfo()
try {
return (new MBeanEasyConfig(getClass(), attrs, opers, "TEST BEAN")).getMBeanInfo();
} catch(Exception e)
{
System.out.println("++++++++++++++++++++E X C E P T I O N+++++++++++++++++++++++++ getMBeanInfo():Exception:"+e);
e.printStackTrace();
return null;
}
|
public java.lang.String | getSmell()
return "test";
|
public void | setColor(java.lang.String c)
|
public boolean | testComplexMethod(int intValue, int[] intValue2, java.lang.String[][][] str)
return false;
|