156
156
* ThreadFactory factory = Thread.ofVirtual().factory();
157
157
* }
158
158
*
159
- * <h2><a id="inheritance">Inheritance</a></h2>
159
+ * <h2><a id="inheritance">Inheritance when creating threads </a></h2>
160
160
* A {@code Thread} inherits its initial values of {@linkplain InheritableThreadLocal
161
161
* inheritable-thread-local} variables (including the context class loader) from
162
162
* the parent thread values at the time that the child {@code Thread} is created.
@@ -905,7 +905,7 @@ public sealed interface Builder
905
905
* method must be invoked to schedule the thread to execute.
906
906
* @param task the object to run when the thread executes
907
907
* @return a new unstarted Thread
908
- * @see <a href="Thread.html#inheritance">Inheritance</a>
908
+ * @see <a href="Thread.html#inheritance">Inheritance when creating threads </a>
909
909
*/
910
910
Thread unstarted (Runnable task );
911
911
@@ -915,7 +915,7 @@ public sealed interface Builder
915
915
*
916
916
* @param task the object to run when the thread executes
917
917
* @return a new started Thread
918
- * @see <a href="Thread.html#inheritance">Inheritance</a>
918
+ * @see <a href="Thread.html#inheritance">Inheritance when creating threads </a>
919
919
*/
920
920
Thread start (Runnable task );
921
921
@@ -1093,7 +1093,7 @@ private static String checkName(String name) {
1093
1093
* <p> This constructor is only useful when extending {@code Thread} to
1094
1094
* override the {@link #run()} method.
1095
1095
*
1096
- * @see <a href="#inheritance">Inheritance</a>
1096
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1097
1097
*/
1098
1098
public Thread () {
1099
1099
this (null , genThreadName (), 0 , null , 0 , null );
@@ -1114,7 +1114,7 @@ public Thread() {
1114
1114
* is started. If {@code null}, this classes {@code run} method does
1115
1115
* nothing.
1116
1116
*
1117
- * @see <a href="#inheritance">Inheritance</a>
1117
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1118
1118
*/
1119
1119
public Thread (Runnable task ) {
1120
1120
this (null , genThreadName (), 0 , task , 0 , null );
@@ -1156,7 +1156,7 @@ public Thread(Runnable task) {
1156
1156
* if the current thread cannot create a thread in the specified
1157
1157
* thread group
1158
1158
*
1159
- * @see <a href="#inheritance">Inheritance</a>
1159
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1160
1160
*/
1161
1161
public Thread (ThreadGroup group , Runnable task ) {
1162
1162
this (group , genThreadName (), 0 , task , 0 , null );
@@ -1173,7 +1173,7 @@ public Thread(ThreadGroup group, Runnable task) {
1173
1173
* @param name
1174
1174
* the name of the new thread
1175
1175
*
1176
- * @see <a href="#inheritance">Inheritance</a>
1176
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1177
1177
*/
1178
1178
public Thread (String name ) {
1179
1179
this (null , checkName (name ), 0 , null , 0 , null );
@@ -1202,7 +1202,7 @@ public Thread(String name) {
1202
1202
* if the current thread cannot create a thread in the specified
1203
1203
* thread group
1204
1204
*
1205
- * @see <a href="#inheritance">Inheritance</a>
1205
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1206
1206
*/
1207
1207
public Thread (ThreadGroup group , String name ) {
1208
1208
this (group , checkName (name ), 0 , null , 0 , null );
@@ -1224,7 +1224,7 @@ public Thread(ThreadGroup group, String name) {
1224
1224
* @param name
1225
1225
* the name of the new thread
1226
1226
*
1227
- * @see <a href="#inheritance">Inheritance</a>
1227
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1228
1228
*/
1229
1229
public Thread (Runnable task , String name ) {
1230
1230
this (null , checkName (name ), 0 , task , 0 , null );
@@ -1278,7 +1278,7 @@ public Thread(Runnable task, String name) {
1278
1278
* if the current thread cannot create a thread in the specified
1279
1279
* thread group or cannot override the context class loader methods.
1280
1280
*
1281
- * @see <a href="#inheritance">Inheritance</a>
1281
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1282
1282
*/
1283
1283
public Thread (ThreadGroup group , Runnable task , String name ) {
1284
1284
this (group , checkName (name ), 0 , task , 0 , null );
@@ -1360,7 +1360,7 @@ public Thread(ThreadGroup group, Runnable task, String name) {
1360
1360
* thread group
1361
1361
*
1362
1362
* @since 1.4
1363
- * @see <a href="#inheritance">Inheritance</a>
1363
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1364
1364
*/
1365
1365
public Thread (ThreadGroup group , Runnable task , String name , long stackSize ) {
1366
1366
this (group , checkName (name ), 0 , task , stackSize , null );
@@ -1425,7 +1425,7 @@ public Thread(ThreadGroup group, Runnable task, String name, long stackSize) {
1425
1425
* thread group
1426
1426
*
1427
1427
* @since 9
1428
- * @see <a href="#inheritance">Inheritance</a>
1428
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1429
1429
*/
1430
1430
public Thread (ThreadGroup group , Runnable task , String name ,
1431
1431
long stackSize , boolean inheritInheritableThreadLocals ) {
@@ -1443,7 +1443,7 @@ public Thread(ThreadGroup group, Runnable task, String name,
1443
1443
* @param task the object to run when the thread executes
1444
1444
* @return a new, and started, virtual thread
1445
1445
* @throws UnsupportedOperationException if preview features are not enabled
1446
- * @see <a href="#inheritance">Inheritance</a>
1446
+ * @see <a href="#inheritance">Inheritance when creating threads </a>
1447
1447
* @since 19
1448
1448
*/
1449
1449
@ PreviewFeature (feature = PreviewFeature .Feature .VIRTUAL_THREADS )
0 commit comments