All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.maven.plugin.spy.Property Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.maven.plugin.spy;

import com.greenpepper.spy.PropertyDescription;

public class Property extends Spy implements PropertyDescription {

    Property(String rawName) {
        super(rawName);
    }

    public boolean equals(Object o) {
        return o != null
                && o instanceof Property
                && this.getName().equals(((Property) o).getName());
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy