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.object;
05:
06: public interface TraversedReference {
07:
08: /**
09: * The value of this reference
10: */
11: public Object getValue();
12:
13: /**
14: * true if the reference is not a field reference (e.g., an internal reference of a logically managed class)
15: */
16: public boolean isAnonymous();
17:
18: /**
19: * The name of the field if it's a field reference or null if it's an anonymous reference.
20: */
21: public String getFullyQualifiedReferenceName();
22: }
|