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.joinpoint;
05:
06: import java.lang.reflect.Method;
07:
08: /**
09: * Interface for the method RTTI (Runtime Type Information).
10: *
11: * @author <a href="mailto:jboner@codehaus.org">Jonas BonŽr </a>
12: */
13: public interface MethodRtti extends CodeRtti {
14: /**
15: * Returns the method.
16: *
17: * @return the method
18: */
19: Method getMethod();
20:
21: /**
22: * Returns the return type.
23: *
24: * @return the return type
25: */
26: Class getReturnType();
27:
28: /**
29: * Returns the value of the return type.
30: *
31: * @return the value of the return type
32: */
33: Object getReturnValue();
34: }
|