mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8277074: Qualified exported types show up in JavaDoc
Reviewed-by: psandoz
This commit is contained in:
parent
2c69c41d48
commit
188aaef385
2 changed files with 14 additions and 0 deletions
|
@ -28,6 +28,8 @@ package jdk.internal.event;
|
|||
/**
|
||||
* Base class for events, to be subclassed in order to define events and their
|
||||
* fields.
|
||||
*
|
||||
* @hidden
|
||||
*/
|
||||
public abstract class Event {
|
||||
/**
|
||||
|
|
|
@ -150,6 +150,9 @@ public class VectorSupport {
|
|||
|
||||
public static class VectorSpecies<E> {}
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
public static class VectorPayload {
|
||||
private final Object payload; // array of primitives
|
||||
|
||||
|
@ -162,17 +165,26 @@ public class VectorSupport {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
public static class Vector<E> extends VectorPayload {
|
||||
public Vector(Object payload) {
|
||||
super(payload);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
public static class VectorShuffle<E> extends VectorPayload {
|
||||
public VectorShuffle(Object payload) {
|
||||
super(payload);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
public static class VectorMask<E> extends VectorPayload {
|
||||
public VectorMask(Object payload) {
|
||||
super(payload);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue