Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 08d88fd0da89176b3879aec0776560e951efb16f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**********************************************************************
 * Created on Mar 25, 2003
 *
 * Copyright (c) 2002,2003 QNX Software Systems Ltd. and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Common Public License v0.5
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v05.html
 * 
 * Contributors: 
 * QNX Software Systems - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.core.model;

public interface IContainerEntry extends ICPathEntry {

	/**
	 * Returns the id identifying this container.
	 * @return String
	 */
	String getId();

}

Back to the top