blob: 2bad85396d77b23853c6241dc13035eefe175f8e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.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.wst.jsdt.jseview.views;
/**
*
*/
public abstract class JEAttribute {
protected static final JEAttribute[] EMPTY= new JEAttribute[0];
public abstract JEAttribute getParent();
public abstract JEAttribute[] getChildren();
public abstract String getLabel();
public abstract Object getWrappedObject();
@Override
public abstract boolean equals(Object obj);
@Override
public abstract int hashCode();
}