mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
18 lines
505 B
Java
18 lines
505 B
Java
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class EnclosingClass {
|
|
public static Object fromStatic() {
|
|
return new Object() {
|
|
void foo(@NotNull String s) { }
|
|
};
|
|
}
|
|
|
|
public Object fromInstance() {
|
|
return new Object() {
|
|
boolean foo(@NotNull String s) {
|
|
return s.contains(EnclosingClass.this.toString());
|
|
}
|
|
};
|
|
}
|
|
} |