You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PerCFlowCompileFromJarTest.java 611B

1234567891011121314151617181920212223
  1. public class PerCFlowCompileFromJarTest {
  2. public static void main(String[] args) throws Exception {
  3. PerCFlowTestHelper c1 = new PerCFlowTestHelper();
  4. PerCFlowTestHelper c2 = new PerCFlowTestHelper();
  5. PerCFlowTestHelper c3 = new PerCFlowTestHelper();
  6. c1.startNewPerCFlow();
  7. c2.startNewPerCFlow();
  8. c3.startNewPerCFlow();
  9. }
  10. }
  11. class PerCFlowTestHelper {
  12. public void startNewPerCFlow()throws Exception{
  13. //do nothing
  14. }
  15. }
  16. aspect MyTestPerCFlowEntryPoint extends PerCFlowCompileFromJar {
  17. protected pointcut entryPoint():
  18. execution( public void PerCFlowTestHelper.startNewPerCFlow() );
  19. }