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

xy.reflect.ui.info.menu.AbstractMenuItem Maven / Gradle / Ivy

package xy.reflect.ui.info.menu;

public abstract class AbstractMenuItem extends AbstractMenuElement {
	protected String name = "";
	
	public AbstractMenuItem(String name) {
		super();
		this.name = name;
	}

	public AbstractMenuItem() {
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	
	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((name == null) ? 0 : name.hashCode());
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		AbstractMenuItem other = (AbstractMenuItem) obj;
		if (name == null) {
			if (other.name != null)
				return false;
		} else if (!name.equals(other.name))
			return false;
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy