in tiles-request-api/src/main/java/org/apache/tiles/request/locale/PostfixedApplicationResource.java [178:202]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
PostfixedApplicationResource other = (PostfixedApplicationResource) obj;
if (locale == null) {
if (other.locale != null)
return false;
} else if (!locale.equals(other.locale))
return false;
if (pathPrefix == null) {
if (other.pathPrefix != null)
return false;
} else if (!pathPrefix.equals(other.pathPrefix))
return false;
if (suffix == null) {
if (other.suffix != null)
return false;
} else if (!suffix.equals(other.suffix))
return false;
return true;
}