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

org.codehaus.mojo.animal_sniffer.ant.Annotation Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
package org.codehaus.mojo.animal_sniffer.ant;

/**
 * @author Stephane Nicoll
 */
public class Annotation
{
    private String className;

    public String getClassName()
    {
        return className;
    }

    public void setClassName( String className )
    {
        this.className = className;
    }

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

        Annotation annotation = (Annotation) o;

        if ( className != null ? !className.equals( annotation.className ) : annotation.className != null )
        {
            return false;
        }

        return true;
    }

    public int hashCode()
    {
        return 0;
    }

    public String toString()
    {
        return "Annotation{" + "className='" + className + '\'' + '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy