Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IVerificationRequired.java 772B

12345678910111213141516171819202122
  1. /* *******************************************************************
  2. * Copyright (c) 2006 Contributors
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v 2.0
  6. * which accompanies this distribution and is available at
  7. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  8. *
  9. * Contributors:
  10. * Andy Clement IBM initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.weaver.patterns;
  13. /**
  14. * Implementors provide a 'verify()' method that is invoked at the end of type
  15. * binding completion.
  16. * @see WildTypePattern.VerifyBoundsForTypePattern
  17. */
  18. public interface IVerificationRequired {
  19. void verify();
  20. }