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 * Introduce annotation for interface introduction 8 * 9 * @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 } 18