1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
import org.aspectj.testing.*; public class IntLiteral { public static void main(String[] args) { new IntLiteral().go(); org.aspectj.testing.Tester.check(goRan, "Method go did not run"); } static boolean goRan = false; void go() { goRan = true; } } aspect A { pointcut p1(int i) : execution(* *(5)); } >
index : vaadin-framework.git | ||
Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/framework | www-data |
summaryrefslogtreecommitdiffstats |