public boolean equals()

in core/src/main/java/org/apache/myfaces/extensions/validator/core/property/PropertyDetails.java [73:100]


    public boolean equals(Object o)
    {
        if (this == o)
        {
            return true;
        }
        if (!(o instanceof PropertyDetails))
        {
            return false;
        }

        PropertyDetails that = (PropertyDetails) o;

        if (baseObject != null ? !baseObject.equals(that.baseObject) : that.baseObject != null)
        {
            return false;
        }
        if (key != null ? !key.equals(that.key) : that.key != null)
        {
            return false;
        }
        if (property != null ? !property.equals(that.property) : that.property != null)
        {
            return false;
        }

        return true;
    }