Example #1
0
 /**
  * Compares two thesaurus instances.
  *
  * @param th instance to be compared
  * @return result of check
  */
 boolean sameAs(final Thesaurus th) {
   return file.eq(th.file) && min == th.min && max == th.max && eq(rel, th.rel);
 }