1 /******************************************************************************************* 2 * Copyright (c) Jonas Bonér, Alexandre Vasseur. All rights reserved. * 3 * http://backport175.codehaus.org * 4 * --------------------------------------------------------------------------------------- * 5 * The software in this package is published under the terms of Apache License Version 2.0 * 6 * a copy of which has been included with this distribution in the license.txt file. * 7 *******************************************************************************************/ 8 package com.tc.backport175; 9 10 /** 11 * Marker interface for all reader dynamic proxy implementations. 12 * 13 * @author <a HREF="mailto:jboner@codehaus.org">Jonas Bonér </a> 14 */ 15 public interface Annotation { 16 17 /** 18 * Returns the annotation type, e.g. the annotation interface type. 19 * 20 * @return the type 21 */ 22 public Class annotationType(); 23 }