public boolean equals()

in core/src/main/java/org/apache/myfaces/extensions/validator/core/metadata/MetaDataEntry.java [149:176]


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

        MetaDataEntry that = (MetaDataEntry) o;

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

        return true;
    }