blob: 2bba77954213e63a6d1e84633e3e15cc708e45a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.core.internal.dtree;
/**
* Helper class for the test suite.
*/
public class TestHelper {
/**
* Returns the root node of a tree.
*/
public static AbstractDataTreeNode getRootNode(AbstractDataTree tree) {
return tree.getRootNode();
}
}