1 22 package org.jboss.test.aop.instanceofannotated; 23 24 import org.jboss.test.aop.instanceofannotated.interfaces.SomeInterface; 25 26 31 public class WildcardPOJO implements SomeInterface 32 { 33 public void someMethod() 34 { 35 System.out.println("someMethod"); 36 } 37 38 public void otherMethod() 39 { 40 System.out.println("otherMethod"); 41 } 42 43 public void anotherMethod() 44 { 45 System.out.println("anotherMethod"); 46 } 47 } 48 | Popular Tags |