| // Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| package com.example; |
| import java.util.*; |
| import org.jetbrains.annotations.Nullable; |
| import org.jetbrains.annotations.NotNull; |
| |
| // GenericNullability: GenericNullability.nullable |
| // Generics: Generics.none |
| // Inheritance: Inheritance.none |
| // IsArray: IsArray.no |
| // Member: Member.method |
| // MemberGenerics: MemberGenerics.upperBound |
| // MemberModifier: MemberModifier.throws |
| // MemberName: MemberName.any |
| // MemberNullability: MemberNullability.nonnull |
| // MemberType: MemberType.customRecord |
| // NestedKind: NestedKind.interface |
| // ParamCount: ParamCount.two |
| // TopLevelKind: TopLevelKind.enum_ |
| // TopLevelModifier: TopLevelModifier.none |
| public enum TestClass117 { |
| VALUE1, VALUE2; |
| public <@Nullable S extends Number> @NotNull CustomRecord<@Nullable S> myMethod(@NotNull CustomRecord<@Nullable S> p1, int p2) throws Exception { return null; } |
| public static interface Nested {} |
| |
| } |