@Target(value={FIELD,TYPE}) @Retention(value=RUNTIME) public @interface Link
If specified on a class, the path(s) will be relative to the class. If specified on a field, the path(s) will be relative to the field. If no paths are specified, then the linking will start at the class or field that is annotated.
To prevent cascading of reference linking, this annotation can be specified with cascade = false
.
Modifier and Type | Optional Element and Description |
---|---|
boolean |
cascade
Indicates whether or not linking should cascade through the specified path(s).
|
String[] |
path
Specify the path or paths (relative to the annotated class or field) at which to start the reference linking
process.
|
public abstract boolean cascade
public abstract String[] path
Copyright © 2005–2014 The Kuali Foundation. All rights reserved.