| // 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.none |
| // Generics: Generics.none |
| // Inheritance: Inheritance.none |
| // IsArray: IsArray.no |
| // Member: Member.method |
| // MemberGenerics: MemberGenerics.none |
| // MemberModifier: MemberModifier.final_ |
| // MemberName: MemberName.getFoo |
| // MemberNullability: MemberNullability.none |
| // MemberType: MemberType.list |
| // NestedKind: NestedKind.innerClass |
| // ParamCount: ParamCount.two |
| // TopLevelKind: TopLevelKind.class_ |
| // TopLevelModifier: TopLevelModifier.sealed |
| public sealed class TestClass015 { |
| public final List<String> getFoo(List<String> p1, int p2) { return null; } |
| public class Nested {} |
| |
| public static final class Sub extends TestClass015 {} |
| } |