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: * Introduce annotation for interface introduction
08: *
09: * @author <a href="mailto:alex@gnilux.com">Alexandre Vasseur</a>
10: */
11: public interface Introduce {
12: /**
13: * The type pointcut (composition of within / hasField / hasMethod) the annotated field type
14: * will be introduced to
15: */
16: public String value();
17: }
|