Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/scannerconfig/IManagedScannerInfoCollector.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/scannerconfig/IManagedScannerInfoCollector.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/scannerconfig/IManagedScannerInfoCollector.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/scannerconfig/IManagedScannerInfoCollector.java
deleted file mode 100644
index 47c1eb7176e..00000000000
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/scannerconfig/IManagedScannerInfoCollector.java
+++ /dev/null
@@ -1,52 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2004 IBM Corporation 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:
- * IBM - Initial API and implementation
- **********************************************************************/
-package org.eclipse.cdt.managedbuilder.scannerconfig;
-
-import java.util.List;
-import java.util.Map;
-
-import org.eclipse.cdt.make.core.scannerconfig.IScannerInfoCollector;
-import org.eclipse.core.resources.IProject;
-
-/**
- * Interface that a colelctor of compiler information must implement.
- * @since 2.0
- */
-public interface IManagedScannerInfoCollector extends IScannerInfoCollector {
- /**
- * Answers a map of collected defines that the the compiler uses by default.
- * The symbols are defined in the map as a (macro, value) pair as follows
- * <p><p><code>-DFOO</code> will be stored as ("FOO","")
- * <p><code>-DFOO=BAR</code> will be stored as ("FOO","BAR")
- * <p><p>Duplicates will not be stored in the map and any whitespaces in
- * the macro or value will be trimmed out.
- *
- * @return a <code>Map</code> of defined symbols and values
- */
- public Map getDefinedSymbols();
-
-
- /**
- * Answers a <code>List</code> of unique built-in includes paths that have been
- * collected for the receiver. The paths are stored as <code>String</code> in the proper
- * format for the host tools.
- *
- * @return a <code>List</code> of built-in compiler include search paths.
- */
- public List getIncludePaths();
-
- /**
- * Sets the <code>IProject</code> for the receiver.
- *
- * @param project
- */
- public void setProject(IProject project);
-}

Back to the top