Searched refs:Nested (Results 1 - 25 of 31) sorted by relevance

12

/openjdk10/langtools/test/tools/javac/diags/examples/
H A DEnclClassRequired.java27 class Nested { } class in class:Base
30 class EnclClassRequired extends Base.Nested { }
H A DEnumsMustBeStatic.java27 class Nested { class in class:EnumsMustBeStatic
/openjdk10/langtools/test/tools/javac/diags/examples/NotDefAccessClassIntfCantAccess/p/
H A DC.java27 class Nested { } class in class:C
29 public Nested[] array;
/openjdk10/langtools/test/tools/javac/generics/diamond/neg/
H A DNeg09d.java13 static class Nested<X> {} class in class:Neg09d
16 Nested<?> m2 = new Neg09.Nested<>() {};
H A DNeg09b.java13 static class Nested<X> {} class in class:Neg09b
16 Nested<?> m2 = new Nested<>() {};
/openjdk10/langtools/test/tools/javac/
H A DExprQualifiedType.java12 static class Nested { class in class:ExprQualifiedType
18 new ExprQualifiedType().Nested.i = 1;
19 new ExprQualifiedType().Nested.m();
H A DLabelHiding_1.java37 class Nested {
H A DNullQualifiedNew.java37 class Nested { class in class:NullQualifiedNew
39 Nested(int i){ j = i;} method in class:NullQualifiedNew.Nested
44 e.new Nested(6);
H A DT6266772.java32 static class Nested { class in class:T6266772
33 Nested (Object o) {} method in class:T6266772.Nested
36 class Inner extends Nested {
/openjdk10/langtools/test/tools/javac/processing/environment/round/
H A DPart2.java29 class Nested { class in class:Part2
H A DBuriedAnnotations.java37 class Nested { class in class:BuriedAnnotations
39 private Nested() {} method in class:BuriedAnnotations.Nested
/openjdk10/langtools/test/tools/javac/importscope/T8075274/
H A DOuter.java37 import static P.Outer.Nested.*;
41 public static class Nested implements I { class in class:Outer
/openjdk10/langtools/test/tools/javac/importscope/
H A DImportInaccessible.java31 import p.ImportInaccessible.Nested.*;
34 static class Nested<X extends Inner> { class in class:ImportInaccessible
/openjdk10/langtools/test/tools/javac/generics/diamond/7030687/
H A DT7030687.java10 static class Nested {} class in class:T7030687
16 Nested n = new Nested<>();
/openjdk10/langtools/test/tools/doclint/anchorTests/p/
H A DTest.java39 public class Nested { class in class:Test
/openjdk10/langtools/test/tools/javac/annotations/T8154270/
H A DOther.java28 Class<?> clazz = EraseClassInfoAnnotationValueTest.ParametricType.Nested.class;
H A DEraseClassInfoAnnotationValueTest.java46 public static class Nested {} class in class:EraseClassInfoAnnotationValueTest.ParametricType
52 Class<?> clazz = ParametricType.Nested.class.getAnnotation(A.class).value();
/openjdk10/jdk/test/tools/jar/multiRelease/data/test10/base/version/
H A DNested.java3 public class Nested { class
/openjdk10/jdk/test/tools/jar/multiRelease/data/test10/v9/version/
H A DNested.java3 public class Nested { class
/openjdk10/jdk/test/java/lang/Class/getDeclaringClass/
H A DSanity.java30 class Nested { class in class:Sanity
34 if (Nested.class.getDeclaringClass() != Sanity.class)
/openjdk10/langtools/test/tools/javac/annotations/
H A DFinalStringInNested.java36 @FinalStringInNested.Annotation(Nested.ID)
37 class Nested {
/openjdk10/jdk/test/java/lang/Class/getDeclaredClasses/
H A DSanity.java30 class Nested { } class in class:Sanity
43 if (c[i] != Nested.class && c[i] != Toplevel.class
/openjdk10/jdk/test/java/lang/annotation/typeAnnotations/
H A DConstructorReceiverTest.java60 { ConstructorReceiverTest.Nested.class, null, Integer.valueOf(20), null },
61 { ConstructorReceiverTest.Nested.NestedMiddle.class, ConstructorReceiverTest.Nested.class, Integer.valueOf(200), Integer.valueOf(250)},
62 { ConstructorReceiverTest.Nested.NestedMiddle.NestedInner.class, ConstructorReceiverTest.Nested.NestedMiddle.class, Integer.valueOf(2000), Integer.valueOf(2500)},
63 { ConstructorReceiverTest.Nested.NestedMiddle.NestedInnerNoReceiver.class, ConstructorReceiverTest.Nested.NestedMiddle.class, Integer.valueOf(4000), EMPTY_ANNOTATED_TYPE},
64 { ConstructorReceiverTest.Nested.NestedMiddle.SecondNestedInnerNoReceiver.class, ConstructorReceiverTest.Nested.NestedMiddle.class, Integer.valueOf(5000), EMPTY_ANNOTATED_TYPE},
146 public static class Nested { class in class:ConstructorReceiverTest
147 @Annot(20) public Nested() {} method in class:ConstructorReceiverTest.Nested
150 NestedMiddle(@nnot250) Nested Nested.this) argument
[all...]
H A DGetAnnotatedReceiverType.java46 public static class Nested { class in class:GetAnnotatedReceiverType
47 public Nested() {} method in class:GetAnnotatedReceiverType.Nested
107 Nested nested = new Nested();
108 Nested.NestedInner instance = nested.new NestedInner();
/openjdk10/jdk/test/java/lang/Class/getEnclosingClass/
H A DEnclosingClass.java30 * b) Nested classes (static member classes)
59 static class Nested { class in class:EnclosingClass
120 simple="Nested",
121 canonical="EnclosingClass.Nested")
122 public Class<?> ab = Nested.class;
209 encl="class EnclosingClass$Nested",
211 canonical="EnclosingClass.Nested.NestedNested")
212 public Class<?> bb = Nested.NestedNested.class;
214 encl="class EnclosingClass$Nested",
216 canonical="EnclosingClass.Nested
[all...]

Completed in 120 milliseconds

12