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.

Aspect.java 919B

123456789101112131415161718192021222324252627
  1. /*******************************************************************************
  2. * Copyright (c) Jonas Bonér, Alexandre Vasseur
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Common Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/cpl-v10.html
  7. *******************************************************************************/
  8. package org.aspectj.lang.annotation;
  9. import java.lang.annotation.Target;
  10. import java.lang.annotation.ElementType;
  11. /**
  12. * Aspect declaration
  13. *
  14. * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
  15. */
  16. @Target(ElementType.TYPE)
  17. public @interface Aspect {
  18. /**
  19. * Per clause expression, defaults to singleton aspect
  20. * <p/>
  21. * Valid values are "" (singleton), "perthis(...)", etc
  22. */
  23. public String value() default "";
  24. }