blob: e17e70ad6d4752a12dafa60a5b28a211f2cbb2b2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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:
* Markus Schorn - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.index;
import org.eclipse.cdt.core.index.IIndexInclude;
import org.eclipse.core.runtime.CoreException;
public interface IIndexFragmentInclude extends IIndexInclude {
/**
* Empty array constant
* @since 4.0.1
*/
IIndexFragmentInclude[] EMPTY_FRAGMENT_INCLUDES_ARRAY = new IIndexFragmentInclude[0];
/**
* Returns the fragment that owns this include.
*/
IIndexFragment getFragment();
/**
* Returns the file that is included by this include. May return <code>null</code> in case
* the included file is not part of this fragment.
*/
IIndexFragmentFile getIncludes() throws CoreException;
}