mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
10 lines
227 B
Java
10 lines
227 B
Java
interface UnknownInterface {
|
|
void foo(String s);
|
|
}
|
|
|
|
@javax.annotation.ParametersAreNonnullByDefault
|
|
class ImplWithNotNull implements UnknownInterface {
|
|
public void foo(String s) {
|
|
System.out.println(s.hashCode());
|
|
}
|
|
} |