mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
14 lines
255 B
Java
14 lines
255 B
Java
class A{
|
|
public abstract class IntegerPredicateBase implements Predicate{
|
|
public boolean applies(Object obj){
|
|
return <caret>applies((Integer)obj);
|
|
}
|
|
}
|
|
public interface Predicate{
|
|
boolean applies(Object obj);
|
|
boolean applies(Integer myObj);
|
|
}
|
|
|
|
}
|
|
|