Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ReflectionWorldPointcutExpressionTest.java 424B

1234567891011121314151617
  1. package org.aspectj.matcher.tools;
  2. import org.aspectj.weaver.World;
  3. import org.aspectj.weaver.reflect.ReflectionWorld;
  4. /**
  5. * Run all the pointcut parsing/matching tests against a ReflectionWorld.
  6. *
  7. * @author Andy Clement
  8. */
  9. public class ReflectionWorldPointcutExpressionTest extends CommonPointcutExpressionTests {
  10. protected World getWorld() {
  11. return new ReflectionWorld(true, getClass().getClassLoader());
  12. }
  13. }