Package org.jboss.aop.joinpoint

Examples of org.jboss.aop.joinpoint.Construction


      new JoinPointPOJO((float) 5.0, false);
     
      assertFullInterception(Construction.class, "before3", "after5", "finally8",
            false);
     
      Construction joinPoint = (Construction) JoinPointAspect.beforeJoinPoint;
      assertSame(JoinPointPOJO.class, joinPoint.getConstructor().getDeclaringClass());
      Class[] parameters = joinPoint.getConstructor().getParameterTypes();
      assertEquals(2, parameters.length);
      assertSame(float.class, parameters[0]);
      assertSame(boolean.class, parameters[1]);
   }
View Full Code Here

TOP

Related Classes of org.jboss.aop.joinpoint.Construction

Copyright © 2018 www.massapicom. 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.