01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.aspectwerkz.annotation;
05:
06: /**
07: * Annotation for around advice
08: *
09: * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
10: */
11: public interface Around {
12: /**
13: * The pointcut expression to bind
14: * TODO: defaults to "" for JAOO sample - might not be good to keep.
15: */
16: String value();
17: }
|