Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2008-10-01 17:02:10 +0000
committerDoug Schaefer2008-10-01 17:02:10 +0000
commit8da6bfb0f0cc700de4b117f4da29b491ae3a2f44 (patch)
tree67b57625ee92ab85b964a8ef0ccbd1c5a9e4afb7 /core/org.eclipse.cdt.core/model
parentdeb0082dc51ee19efd464c31e664e81f99be69dd (diff)
downloadorg.eclipse.cdt-8da6bfb0f0cc700de4b117f4da29b491ae3a2f44.tar.gz
org.eclipse.cdt-8da6bfb0f0cc700de4b117f4da29b491ae3a2f44.tar.xz
org.eclipse.cdt-8da6bfb0f0cc700de4b117f4da29b491ae3a2f44.zip
CModel element to model a build/indexer config.
Diffstat (limited to 'core/org.eclipse.cdt.core/model')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IConfiguration.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IConfiguration.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IConfiguration.java
new file mode 100644
index 00000000000..135a30d50c1
--- /dev/null
+++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IConfiguration.java
@@ -0,0 +1,31 @@
+/*******************************************************************************
+ * Copyright (c) 2008 Wind River Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Doug Schaefer (Wind River Systems)
+ *******************************************************************************/
+package org.eclipse.cdt.core.model;
+
+import org.eclipse.cdt.core.parser.IScannerInfo;
+import org.eclipse.core.resources.IResource;
+
+/**
+ * Represents a build configuration.
+ *
+ * @author Doug Schaefer
+ */
+public interface IConfiguration {
+
+ /**
+ * Get the scanner info for the given resource in this configuration.
+ *
+ * @param resource
+ * @return scanner info for this resource in this configuration
+ */
+ IScannerInfo getScannerInfo(IResource resource);
+
+}

Back to the top