--- old/src/java.management/share/classes/java/lang/management/OperatingSystemMXBean.java 2015-08-05 20:44:31.254427258 +0400 +++ new/src/java.management/share/classes/java/lang/management/OperatingSystemMXBean.java 2015-08-05 20:44:31.042427268 +0400 @@ -35,13 +35,13 @@ * that can be obtained by calling * the {@link ManagementFactory#getOperatingSystemMXBean} method or * from the {@link ManagementFactory#getPlatformMBeanServer - * platform MBeanServer} method. + * platform MBeanServer} method. * - *

The ObjectName for uniquely identifying the MXBean for + *

The {@code ObjectName} for uniquely identifying the MXBean for * the operating system within an MBeanServer is: *

* {@link ManagementFactory#OPERATING_SYSTEM_MXBEAN_NAME - * java.lang:type=OperatingSystem} + * java.lang:type=OperatingSystem} *
* * It can be obtained by calling the @@ -63,7 +63,7 @@ public interface OperatingSystemMXBean extends PlatformManagedObject { /** * Returns the operating system name. - * This method is equivalent to System.getProperty("os.name"). + * This method is equivalent to {@code System.getProperty("os.name")}. * * @return the operating system name. * @@ -78,7 +78,7 @@ /** * Returns the operating system architecture. - * This method is equivalent to System.getProperty("os.arch"). + * This method is equivalent to {@code System.getProperty("os.arch")}. * * @return the operating system architecture. * @@ -93,7 +93,7 @@ /** * Returns the operating system version. - * This method is equivalent to System.getProperty("os.version"). + * This method is equivalent to {@code System.getProperty("os.version")}. * * @return the operating system version. *