Home | History | Annotate | Download | only in el

Lines Matching refs:BoundLocation

10  * A {@link BoundLocation} holds location information for a bound of a type
16 public final class BoundLocation {
30 * Constructs a new {@link BoundLocation}; the arguments are assigned to
33 public BoundLocation(int paramIndex, int boundIndex) {
39 * Returns whether this {@link BoundLocation} equals <code>o</code>; a
41 * is statically known to be another nonnull {@link BoundLocation}.
43 public boolean equals(BoundLocation l) {
48 * This {@link BoundLocation} equals <code>o</code> if and only if
49 * <code>o</code> is another nonnull {@link BoundLocation} and
55 return o instanceof BoundLocation
56 && equals((BoundLocation) o);
72 return "BoundLocation(" + paramIndex + "," + boundIndex + ")";