1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

getResource () is already in ICElement.

This commit is contained in:
Alain Magloire 2003-02-24 04:48:34 +00:00
parent f0db445aea
commit fac6b3bc9b

View file

@ -5,18 +5,6 @@
package org.eclipse.cdt.core.model;
import org.eclipse.core.resources.IResource;
public interface ICResource extends IParent, ICElement {
/**
* Returns the resource that corresponds directly to this element,
* <p>
* For example, the corresponding resource for an <code>ATranslationUnit</code>
* is its underlying <code>IFile</code>.
*
* @return the corresponding resource.
* @exception CModelException if this element does not exist or if an
* exception occurs while accessing its corresponding resource
*/
public IResource getResource() throws CModelException;
}