blob: 7ea21df4f144725ed63de10112c13ccd29aa8d6f [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.ui.views.markers.internal;
/**
* The MarkerNode class is the class that handles category nodes and
* concrete markers.
*
*/
public abstract class MarkerNode {
/**
* Get the children of the node.
* @return MarkerNode[]
*/
public abstract MarkerNode[] getChildren();
/**
* Return the parent node or <code>null</code> if this is a top
* level element.
* @return MarkerNode
*/
public abstract MarkerNode getParent() ;
/**
* Return whether or not this is a concrete node
* @return boolean
*/
public abstract boolean isConcrete();
/**
* Return the description of the receiver.
* @return String
*/
public abstract String getDescription() ;
}