Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ISourceRoot.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ISourceRoot.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ISourceRoot.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ISourceRoot.java
deleted file mode 100644
index 1162857bfdc..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/ISourceRoot.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * QNX Software Systems - Initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.cdt.core.model;
-
-import org.eclipse.core.resources.IResource;
-
-/**
- * ISourceRoot
- */
-public interface ISourceRoot extends ICContainer {
-
- /**
- * @param resource
- * @return
- */
- boolean isOnSourceEntry(IResource resource);
-
- /**
- * @param element
- * @return
- */
- boolean isOnSourceEntry(ICElement element);
-
-}

Back to the top