mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8330182: Start of release updates for JDK 24
8330183: Add SourceVersion.RELEASE_24 8330184: Add source 24 and target 24 to javac Reviewed-by: iris, vromero, asotona, dholmes
This commit is contained in:
parent
054362abe0
commit
75dc2f8518
50 changed files with 2076 additions and 64 deletions
|
@ -113,7 +113,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
* corresponding platform visitor type.
|
||||
*/
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static abstract class AbstractAnnotationValueVisitor<R, P> extends AbstractAnnotationValueVisitorPreview<R, P> {
|
||||
|
||||
|
@ -125,7 +125,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static abstract class AbstractElementVisitor<R, P> extends AbstractElementVisitorPreview<R, P> {
|
||||
/**
|
||||
|
@ -136,7 +136,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static abstract class AbstractTypeVisitor<R, P> extends AbstractTypeVisitorPreview<R, P> {
|
||||
/**
|
||||
|
@ -147,7 +147,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static class ElementKindVisitor<R, P> extends ElementKindVisitorPreview<R, P> {
|
||||
/**
|
||||
|
@ -169,7 +169,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static class ElementScanner<R, P> extends ElementScannerPreview<R, P> {
|
||||
/**
|
||||
|
@ -189,7 +189,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static class SimpleAnnotationValueVisitor<R, P> extends SimpleAnnotationValueVisitorPreview<R, P> {
|
||||
/**
|
||||
|
@ -211,7 +211,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static class SimpleElementVisitor<R, P> extends SimpleElementVisitorPreview<R, P> {
|
||||
/**
|
||||
|
@ -233,7 +233,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static class SimpleTypeVisitor<R, P> extends SimpleTypeVisitorPreview<R, P> {
|
||||
/**
|
||||
|
@ -255,7 +255,7 @@ public abstract class JavacTestingAbstractProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
@SupportedSourceVersion(RELEASE_23)
|
||||
@SupportedSourceVersion(RELEASE_24)
|
||||
@SuppressWarnings("preview")
|
||||
public static class TypeKindVisitor<R, P> extends TypeKindVisitorPreview<R, P> {
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue