Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Around.java 823B

12345678910111213141516171819202122232425
  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. * Around advice
  13. *
  14. * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
  15. */
  16. @Target(ElementType.METHOD)
  17. public @interface Around {
  18. /**
  19. * The pointcut expression where to bind the advice
  20. */
  21. String value();
  22. }