From: Jason K. <jl...@wi...> - 2002-02-28 20:44:21
|
I've only been playing with MBeans for the last couple of days now, so excuse me if this is a stupid question. RTFM with a link would be fine too. I have: class A implements AMBean { ... } class B extends A implements BMBean { ... } and xdoclet generates: interface AMBean { ... } interface BMBean { ... } If my understanding is correct, all attributes/operations that B inherits from A must also be defined in BMBean. Everything works as expected when I change BMBean to: interface BMean extends AMBean { ... } How do I get jmxdoclet to generate this or equivalent for me? I kinda expected it to look in super and pull the @jmx tags. -Jason |