home *** CD-ROM | disk | FTP | other *** search
- package javax.help;
-
- import java.util.Locale;
-
- class HelpUtilities$LocalePair {
- Locale locale1;
- Locale locale2;
-
- HelpUtilities$LocalePair(Locale var1, Locale var2) {
- this.locale1 = var1;
- this.locale2 = var2;
- }
-
- public int hashCode() {
- return this.locale1.hashCode() + this.locale2.hashCode();
- }
-
- public boolean equals(Object var1) {
- if (var1 != null && var1 instanceof HelpUtilities$LocalePair) {
- HelpUtilities$LocalePair var2 = (HelpUtilities$LocalePair)var1;
- return this.locale1.equals(var2.locale1) && this.locale2.equals(var2.locale2);
- } else {
- return false;
- }
- }
- }
-