Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
8277074: Qualified exported types show up in JavaDoc
Reviewed-by: psandoz
  • Loading branch information
hns committed Dec 19, 2022
1 parent 2c69c41 commit 188aaef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/java.base/share/classes/jdk/internal/event/Event.java
Expand Up @@ -28,6 +28,8 @@
/**
* Base class for events, to be subclassed in order to define events and their
* fields.
*
* @hidden
*/
public abstract class Event {
/**
Expand Down
Expand Up @@ -150,6 +150,9 @@ public class VectorSupport {

public static class VectorSpecies<E> {}

/**
* @hidden
*/
public static class VectorPayload {
private final Object payload; // array of primitives

Expand All @@ -162,17 +165,26 @@ protected final Object getPayload() {
}
}

/**
* @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);
Expand Down

1 comment on commit 188aaef

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.