if( m_mbean == null ) throw new NotCompliantMBeanException("Must annotate object with @MBean");
for( Method m : mbean.getClass().getMethods() )
{
ManagedAttribute a = m.getAnnotation( ManagedAttribute.class );
if( a != null )
{
createNewAttribute( m, a );
}