You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

A_yes.java 256B

12345678
  1. public class A_yes {
  2. @CacheMethodResult
  3. public void m() {
  4. System.out.println("A_yes.m()");
  5. Class[] itfs = A_yes.class.getInterfaces();
  6. System.out.println("A_yes has interface? "+((itfs==null||itfs.length==0)?"no":itfs[0].getName()));
  7. }
  8. }