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.

SuppressAjWarnings.java 962B

12345678910111213141516171819202122232425262728293031
  1. /* *******************************************************************
  2. * Copyright (c) 2005 Contributors.
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Wes Isberg initial implementation
  11. * Andy Clement fleshed out to match SuppressWarnings
  12. * ******************************************************************/
  13. package org.aspectj.lang.annotation;
  14. import java.lang.annotation.Retention;
  15. import java.lang.annotation.RetentionPolicy;
  16. /**
  17. * Annotate members to avoid AspectJ error messages.
  18. * Currently supported:
  19. * <ul>
  20. * <li>advice that might not run (-Xlint TODO message id)</li>
  21. * </ul>
  22. *
  23. */
  24. @Retention(RetentionPolicy.RUNTIME)
  25. public @interface SuppressAjWarnings {
  26. String[] value() default "";
  27. }