Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(0.43) Remove javadoc tables used for code examples #18850

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@
* <li>Collecting transaction metrics for a specific set of application threads over a specific duration.
* </ol>
* <br>
* <table border="1">
* <caption><b>Usage example for the {@link JvmCpuMonitorMXBean}</b></caption>
* <tr> <td>
* <b>Usage example for the {@link JvmCpuMonitorMXBean}</b>
* <pre>
* {@code
* ...
Expand All @@ -84,8 +82,7 @@
* // Exception Handling
* }
* }
* </pre></td></tr>
* </table>
* </pre>
*/
public interface JvmCpuMonitorMXBean extends PlatformManagedObject {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,17 @@
package com.ibm.lang.management;

/**
* OpenJ9 platform management extension interface for the Operating System on which the Java Virtual Machine is running.
* <p>OpenJ9 platform management extension interface for the Operating System on which the Java Virtual Machine is running.</p>
* <br>
* <table border="1">
* <caption><b>Usage example for the {@link com.ibm.lang.management.OperatingSystemMXBean}</b></caption>
* <tr> <td> <pre>
* <b>Usage example for the {@link com.ibm.lang.management.OperatingSystemMXBean}</b>
* <pre>
* {@code
* ...
* com.ibm.lang.management.OperatingSystemMXBean osmxbean = null;
* osmxbean = (com.ibm.lang.management.OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
* ...
* }
* </pre></td></tr></table>
* </pre>
* <br>
*
* The following methods depend on certain information that is not available on z/OS;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@
* </ul>
* </ol>
* <br>
* <table border="1">
* <caption><b>Usage example for the {@link GuestOSMXBean}</b></caption>
* <tr> <td>
* <b>Usage example for the {@link GuestOSMXBean}</b>
* <pre>
* {@code
* ...
Expand All @@ -70,7 +68,7 @@
* // Exception Handling
* }
* }
* </pre></td></tr></table>
* </pre>
*
* @since 1.7.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,8 @@
* indeterminate.
* </ul>
* <br>
* <table border="1">
* <caption><b>Usage example for the {@link HypervisorMXBean}</b></caption>
* <tr> <td> <pre>
* <b>Usage example for the {@link HypervisorMXBean}</b>
* <pre>
* {@code
* ...
* try {
Expand All @@ -73,7 +72,7 @@
* // Exception Handling
* }
* }
* </pre></td></tr></table>
* </pre>
*
* @since 1.7.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@
* <p>
* This interface provides APIs to dynamically trigger dump agents. APIs are also available to
* configure dump options.
* This MXBean reuses the methods in com.ibm.jvm.Dump API
* This MXBean reuses the methods in com.ibm.jvm.Dump API.
* </p>
* <br>
* <table border="1">
* <caption><b>Usage example for the {@link OpenJ9DiagnosticsMXBean}</b></caption>
* <tr> <td>
* <b>Usage example for the {@link OpenJ9DiagnosticsMXBean}</b>
* <pre>
* {@code
* ...
Expand All @@ -53,8 +52,7 @@
* // Exception Handling
* }
* }
* </pre></td></tr>
* </table>
* </pre>
*/
public interface OpenJ9DiagnosticsMXBean extends PlatformManagedObject {
/**
Expand Down