mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-30 17:27:53 +07:00
14 lines
253 B
Java
14 lines
253 B
Java
class A{
|
|
public abstract class IntegerPredicateBase implements Predicate{
|
|
public boolean applies(Object obj){
|
|
return <ref>applies((Integer)obj);
|
|
}
|
|
}
|
|
public interface Predicate{
|
|
boolean applies(Object obj);
|
|
boolean applies(Integer myObj);
|
|
}
|
|
|
|
}
|
|
|