mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 18:35:32 +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.
|
* A C File Resource.
|
||||||
*/
|
*/
|
||||||
public interface ICFile extends IParent, ICResource, ICElement {
|
public interface ICFile extends IParent, ICResource {
|
||||||
|
|
||||||
public boolean isBinary();
|
public boolean isBinary();
|
||||||
|
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue