KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > aspectwerkz > annotation > Expression


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.aspectwerkz.annotation;
5
6 /**
7  * Annotation for pointcut
8  * <p/>
9  * TODO: rename to Pointcut and remove pointcut as field ??
10  *
11  * @author <a HREF="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
12  */

13 public interface Expression {
14   /**
15    * The pointcut expression
16    */

17   String JavaDoc value();
18 }
19
Popular Tags