Examples of defaultMethod()


Examples of org.jboss.test.microcontainer.beans.POJO.defaultMethod()

   }

   public void testAspectInterceptorAndDynamicCFlow()
   {
      POJO pojo = (POJO)getBean("Bean");
      pojo.defaultMethod();
      assertTrue(XmlLoadableAspect.intercepted);
      assertTrue(XmlLoadableInterceptor.intercepted);
     
      Element element = XmlLoadableAspect.interceptedElement;
      checkXml(element, "aspect", "somexml", "hello");
View Full Code Here

Examples of org.jboss.test.microcontainer.beans.POJO.defaultMethod()

      TestClassMetaDataAspect.reset();
      pojo.method();
      assertInvokedLastAndClass("method2");
     
      TestClassMetaDataAspect.reset();
      pojo.defaultMethod();
      assertInvokedLastAndClass("default");
     
   }
  
   private void assertInvokedLastAndClass(String last)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.