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

org.eclipse.jdt.jeview.views.Null Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2005, 2007 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.jdt.jeview.views;

import org.eclipse.core.runtime.Assert;



public class Null extends JEAttribute {

	private final JEAttribute fParent;
	private final String fName;

	public Null(JEAttribute parent, String name) {
		Assert.isNotNull(parent);
		Assert.isNotNull(name);
		fParent= parent;
		fName= name;
	}

	@Override
	public JEAttribute getParent() {
		return fParent;
	}

	@Override
	public JEAttribute[] getChildren() {
		return EMPTY;
	}

	@Override
	public Object getWrappedObject() {
		return null;
	}

	@Override
	public String getLabel() {
		return fName + ": null";
	}

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

		Null other= (Null) obj;
		if (! fParent.equals(other.fParent)) {
			return false;
		}
		if (! fName.equals(other.fName)) {
			return false;
		}

		return true;
	}

	@Override
	public int hashCode() {
		return fParent.hashCode() + fName.hashCode();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy