mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56:02 +02:00
Remove duplicate ICElement
This commit is contained in:
parent
5599b8ca2a
commit
6b785f2fa0
4 changed files with 4 additions and 4 deletions
|
@ -10,7 +10,7 @@ import org.eclipse.core.resources.IFile;
|
|||
/**
|
||||
* A C File Resource.
|
||||
*/
|
||||
public interface ICFile extends IParent, ICResource, ICElement {
|
||||
public interface ICFile extends IParent, ICResource {
|
||||
|
||||
public boolean isBinary();
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import org.eclipse.core.resources.IFolder;
|
|||
/**
|
||||
* A C Folder Resource.
|
||||
*/
|
||||
public interface ICFolder extends IParent, ICResource, ICElement {
|
||||
public interface ICFolder extends IParent, ICResource {
|
||||
|
||||
public IFolder getFolder();
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ import org.eclipse.core.runtime.IPath;
|
|||
* @see CCore#create(org.eclipse.core.resources.IProject)
|
||||
* @see IBuildEntry
|
||||
*/
|
||||
public interface ICProject extends IParent, ICResource, ICElement {
|
||||
public interface ICProject extends IParent, ICResource {
|
||||
|
||||
/**
|
||||
* Returns the <code>ICElement</code> corresponding to the given
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
*
|
||||
* @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).
|
||||
* If one container is specified, all elements are copied to that
|
||||
|
|
Loading…
Add table
Reference in a new issue