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

Add Javadoc to qualifers for viewpoint test checker #1021

Merged
merged 4 commits into from
Dec 22, 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
1 change: 1 addition & 0 deletions framework/src/test/java/viewpointtest/quals/A.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** The A qualifier. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
Expand Down
1 change: 1 addition & 0 deletions framework/src/test/java/viewpointtest/quals/B.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** The B qualifier. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
Expand Down
1 change: 1 addition & 0 deletions framework/src/test/java/viewpointtest/quals/Bottom.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** The Bottom qualifier. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
Expand Down
6 changes: 3 additions & 3 deletions framework/src/test/java/viewpointtest/quals/Lost.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
import java.lang.annotation.Target;

/**
* The {@link Lost} qualifier indicates that a relationship cannot be expressed. It is the result of
* The Lost qualifier indicates that a relationship cannot be expressed. It is the result of
* viewpoint adaptation that combines {@link Top} and {@link ReceiverDependentQual}.
*
* <p>It is not reflexive in the subtyping relationship and the only subtype for {@link Lost} is
* {@link Bottom}.
* <p>It is not reflexive in the subtyping relationship and the only subtype for Lost is {@link
* Bottom}.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
1 change: 1 addition & 0 deletions framework/src/test/java/viewpointtest/quals/PolyVP.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** The PolyVP qualifier is a polymorphic qualifier in this hierarchy. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** The ReceiverDependentQual qualifier. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
Expand Down
1 change: 1 addition & 0 deletions framework/src/test/java/viewpointtest/quals/Top.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** The Top qualifier. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
Expand Down
Loading