1 23 24 29 42 43 48 49 package com.sun.enterprise.util.collection; 50 51 public class IntEntry { 52 53 public int key; 54 public Object object; 55 56 IntEntry (int key, Object object) { 57 this.key = key; 58 this.object = object; 59 } 60 61 IntEntry (long key, Object object) { 62 this.key = (int) key; 63 this.object = object; 64 } 65 66 public boolean equals(Object object) { 67 if (object instanceof IntEntry) { 68 return ( ((IntEntry) object).key == key ); 69 } 70 return false; 71 } 72 73 public String toString() { 74 return "key: " + key + "; obj: " + object; 75 } 76 77 } 78 79 | Popular Tags |