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.Field;
07:
08: /**
09: * Interface for the field signature.
10: *
11: * @author <a href="mailto:jboner@codehaus.org">Jonas BonŽr </a>
12: */
13: public interface FieldSignature extends MemberSignature {
14: /**
15: * Returns the field.
16: *
17: * @return the field
18: */
19: Field getField();
20:
21: /**
22: * Returns the field type.
23: *
24: * @return the field type
25: */
26: Class getFieldType();
27: }
|