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.

pr108050.aj 482B

123456789101112131415161718192021222324252627282930
  1. class HttpServlet {
  2. protected void doPost() {
  3. }
  4. }
  5. abstract class MockServlet extends HttpServlet {
  6. protected void doPost() {
  7. }
  8. private static aspect FindMatches {
  9. declare warning: execution(* HttpServlet.do*(..)): "servlet request";
  10. }
  11. }
  12. class MockDelayingServlet extends MockServlet {
  13. private static final long serialVersionUID = 1;
  14. }
  15. class MockServlet4 extends MockDelayingServlet
  16. {
  17. protected void doPost()
  18. {
  19. }
  20. }