blob: 1f83e5d538b84931e4805bc60b7c2ae6d1f137d7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.astview.views;
import org.eclipse.swt.graphics.Image;
public class Error extends ExceptionAttribute {
private final Object fParent;
private final String fLabel;
public Error(Object parent, String label, RuntimeException thrownException) {
fParent= parent;
fLabel= label;
fException= thrownException;
}
public Object[] getChildren() {
return EMPTY;
}
public Image getImage() {
return null;
}
public String getLabel() {
return fLabel;
}
public Object getParent() {
return fParent;
}
/*
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null || !obj.getClass().equals(getClass())) {
return false;
}
Error other= (Error) obj;
if (fParent == null) {
if (other.fParent != null)
return false;
} else if (! fParent.equals(other.fParent)) {
return false;
}
if (fLabel == null) {
if (other.fLabel != null)
return false;
} else if (! fLabel.equals(other.fLabel)) {
return false;
}
return true;
}
/*
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return (fParent != null ? fParent.hashCode() : 0)
+ (fLabel != null ? fLabel.hashCode() : 0);
}
}