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