Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

AjdeApiRules.aj 876B

123456789101112131415161718192021222324
  1. /* *******************************************************************
  2. * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC),
  3. * 2003 Contributors.
  4. * All rights reserved.
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Public License v1.0
  7. * which accompanies this distribution and is available at
  8. * http://www.eclipse.org/legal/epl-v10.html
  9. *
  10. * Contributors:
  11. * Xerox/PARC initial implementation
  12. * AMC 01.20.2003 extended to support new AspectJ 1.1 options,
  13. * bugzilla #29769
  14. * ******************************************************************/
  15. public aspect AjdeApiRules {
  16. declare warning:
  17. call(* javax.swing..*(..)) && !within(org.aspectj.ajde.ui.swing..*):
  18. "do not use Swing outside of org.aspectj.ajde.swing";
  19. }