Methods Summary |
---|
public java.lang.String | getColor()
return Color;
|
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 java.lang.String | getSmell()
return Smell;
|
public java.lang.String | getTaste()
return Taste;
|
public void | setColor(java.lang.String c)
Color = c;
|
public void | setSmell(java.lang.String s)
Smell = s;
|
public void | setTaste(java.lang.String t)
Taste = t;
|
public java.lang.String | stringVoid()
Logger.log("Method: takes void returns string");
return ("stringvoid");
|
public void | voidInt(int i)
Logger.log("Method: takes int = " + i + " and returns void");
|
public void | voidVoid()
Logger.log("Method: takes void returns void");
|