< prev index next >

jdk/src/java.management/share/classes/java/lang/management/ThreadInfo.java

Print this page

        

*** 588,598 **** * a {@linkplain Thread#isDaemon daemon thread}. * * @return {@code true} if the thread is a daemon thread, * {@code false} otherwise. * @see Thread#isDaemon ! * @since 1.9 */ public boolean isDaemon() { return daemon; } --- 588,598 ---- * a {@linkplain Thread#isDaemon daemon thread}. * * @return {@code true} if the thread is a daemon thread, * {@code false} otherwise. * @see Thread#isDaemon ! * @since 9 */ public boolean isDaemon() { return daemon; }
*** 600,610 **** * Returns the {@linkplain Thread#getPriority() thread priority} of the * thread associated with this {@code ThreadInfo}. * * @return The priority of the thread associated with this * {@code ThreadInfo}. ! * @since 1.9 */ public int getPriority() { return priority; } --- 600,610 ---- * Returns the {@linkplain Thread#getPriority() thread priority} of the * thread associated with this {@code ThreadInfo}. * * @return The priority of the thread associated with this * {@code ThreadInfo}. ! * @since 9 */ public int getPriority() { return priority; }
< prev index next >