Home | History | Annotate | Download | only in code

Lines Matching defs:Entry

23  * Table of catch entries. Each entry includes a range of code
49 public Entry get(int n) {
50 return (Entry) get0(n);
54 * Sets the entry at the given index.
57 * @param entry {@code non-null;} the entry to set at {@code n}
59 public void set(int n, Entry entry) {
60 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);
149 public int compareTo(Entry other) {