--- old/src/java.management/share/classes/sun/management/MappedMXBeanType.java 2015-05-18 17:53:41.368753408 +0400 +++ new/src/java.management/share/classes/sun/management/MappedMXBeanType.java 2015-05-18 17:53:41.212753408 +0400 @@ -45,13 +45,15 @@ * A mapped mxbean type maps a Java type to an open type. * Only the following Java types are mappable * (currently required by the platform MXBeans): - * 1. Primitive types - * 2. Wrapper classes such java.lang.Integer, etc - * 3. Classes with only getter methods and with a static "from" method - * that takes a CompositeData argument. - * 4. E[] where E is a type of 1-4 (can be multi-dimensional array) - * 5. List where E is a type of 1-3 - * 6. Map where K and V are a type of 1-4 + *
    + *
  1. Primitive types
  2. + *
  3. Wrapper classes such java.lang.Integer, etc
  4. + *
  5. Classes with only getter methods and with a static "from" method + * that takes a CompositeData argument.
  6. + *
  7. {@code E[]} where {@code E} is a type of 1-4 (can be multi-dimensional array)
  8. + *
  9. {@code List} where E is a type of 1-3
  10. + *
  11. {@code Map} where {@code K} and {@code V} are a type of 1-4
  12. + *
* * OpenDataException will be thrown if a Java type is not supported. */