Home | History | Annotate | Download | only in code

Lines Matching defs:Entry

22  * Table of catch entries. Each entry includes a range of code
48 public Entry get(int n) {
49 return (Entry) get0(n);
53 * Sets the entry at the given index.
56 * @param entry {@code non-null;} the entry to set at {@code n}
58 public void set(int n, Entry entry) {
59 set0(n, entry);
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
93 * Entry in a catch list.
95 public static class Entry implements Comparable<Entry> {
112 public Entry(int start, int end, CatchHandlerList handlers) {
141 if (other instanceof Entry) {
142 return (compareTo((Entry) other) == 0);
150 public int compareTo(Entry other) {