Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceMapper.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceMapper.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceMapper.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceMapper.java
deleted file mode 100644
index 7714236d3be..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceMapper.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
-package org.eclipse.cdt.internal.core.model;
-
-import java.util.ArrayList;
-
-import org.eclipse.cdt.core.model.ICContainer;
-import org.eclipse.cdt.core.model.ICElement;
-import org.eclipse.cdt.core.model.ICProject;
-import org.eclipse.cdt.core.model.ITranslationUnit;
-
-/**
- */
-public class SourceMapper {
- ICProject cproject;
-
- public SourceMapper(ICProject p) {
- cproject = p;
- }
-
- public ITranslationUnit findTranslationUnit(String filename) {
- return findTranslationUnit(cproject, filename);
- }
-
- public ITranslationUnit findTranslationUnit(ICContainer container, String filename) {
- ArrayList list = container.getChildrenOfType(ICElement.C_UNIT);
- for (int i = 0; i < list.size(); i++) {
- Object o = list.get(i);
- if (o instanceof ITranslationUnit) {
- ITranslationUnit tu = (ITranslationUnit)o;
- // TODO: What about non case sensitive filesystems.
- if (filename.equals(tu.getElementName())) {
- return tu;
- }
- }
- }
-
- // TODO: This to simple, we are not protected against
- // loop in the file system symbolic links etc ..
- list = container.getChildrenOfType(ICElement.C_CCONTAINER);
- for (int i = 0; i < list.size(); i++) {
- Object o = list.get(i);
- if (o instanceof ICContainer) {
- ITranslationUnit tu = findTranslationUnit((ICContainer)o, filename);
- if (tu != null) {
- return tu;
- }
- }
- }
- return null;
- }
-} \ No newline at end of file

Back to the top