Here you can find the source of getDescription(MBeanFeatureInfo element)
private static String getDescription(MBeanFeatureInfo element)
//package com.java2s; import javax.management.MBeanFeatureInfo; public class Main { private static String getDescription(MBeanFeatureInfo element) { String desc = element.getDescription(); return desc != null && desc.equals(element.getName()) ? null : desc; // Remove silly descriptions }/* w w w . j av a 2 s.co m*/ }