1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-26 10:25:32 +02:00

Remove duplicate ICElement

This commit is contained in:
Alain Magloire 2003-01-23 19:27:17 +00:00
parent 5599b8ca2a
commit 6b785f2fa0
4 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ import org.eclipse.core.resources.IFile;
/** /**
* A C File Resource. * A C File Resource.
*/ */
public interface ICFile extends IParent, ICResource, ICElement { public interface ICFile extends IParent, ICResource {
public boolean isBinary(); public boolean isBinary();

View file

@ -10,7 +10,7 @@ import org.eclipse.core.resources.IFolder;
/** /**
* A C Folder Resource. * A C Folder Resource.
*/ */
public interface ICFolder extends IParent, ICResource, ICElement { public interface ICFolder extends IParent, ICResource {
public IFolder getFolder(); public IFolder getFolder();
} }

View file

@ -17,7 +17,7 @@ import org.eclipse.core.runtime.IPath;
* @see CCore#create(org.eclipse.core.resources.IProject) * @see CCore#create(org.eclipse.core.resources.IProject)
* @see IBuildEntry * @see IBuildEntry
*/ */
public interface ICProject extends IParent, ICResource, ICElement { public interface ICProject extends IParent, ICResource {
/** /**
* Returns the <code>ICElement</code> corresponding to the given * Returns the <code>ICElement</code> corresponding to the given

View file

@ -22,7 +22,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
* *
* @see CCore#create(org.eclipse.core.resources.IWorkspaceRoot) * @see CCore#create(org.eclipse.core.resources.IWorkspaceRoot)
*/ */
public interface ICRoot extends ICResource, ICElement, IParent { public interface ICRoot extends IParent, ICResource {
/** /**
* Copies the given elements to the specified container(s). * Copies the given elements to the specified container(s).
* If one container is specified, all elements are copied to that * If one container is specified, all elements are copied to that