blob: c89068eb448a8cd5e324acf2529542dbddd551f3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Wind River Systems, Inc. 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.tcf.te.tcf.filesystem.core.interfaces.runtime;
import org.eclipse.tcf.te.tcf.core.model.interfaces.IModel;
import org.eclipse.tcf.te.tcf.filesystem.core.model.FSTreeNode;
import org.eclipse.tcf.te.tcf.locator.interfaces.nodes.IPeerNodeProvider;
/**
* A model dealing with the filesystem at runtime.
*/
public interface IRuntimeModel extends IModel, IPeerNodeProvider {
/**
* Get the root node of the peer model.
*
* @return The root node.
*/
public FSTreeNode getRoot();
}