comparison dwtx/jface/text/TypedRegion.d @ 160:3678e4f1a766

toHash, toString
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 02:07:22 +0200
parents b6bad70d540a
children 1a5b8f8129df
comparison
equal deleted inserted replaced
159:7926b636c282 160:3678e4f1a766
197 } 197 }
198 198
199 /* 199 /*
200 * @see java.lang.Object#hashCode() 200 * @see java.lang.Object#hashCode()
201 */ 201 */
202 public int hashCode() { 202 public override hash_t toHash() {
203 int type= fType is null ? 0 : fType.hashCode(); 203 int type= fType is null ? 0 : fType.toHash();
204 return super.hashCode() | type; 204 return super.toHash() | type;
205 } 205 }
206 } 206 }