Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2013-06-14 22:50:47 +0000
committerSergey Prigogin2013-06-14 22:54:13 +0000
commita79028d2fcbfb91f1c65aab267e2b8e9e75d4d85 (patch)
tree4951a80edaad81df121299ddef58a7a21bf9adff /core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui
parentaf00e7cd42f7e5d26f1e64030c70f30d1089ccc4 (diff)
downloadorg.eclipse.cdt-a79028d2fcbfb91f1c65aab267e2b8e9e75d4d85.tar.gz
org.eclipse.cdt-a79028d2fcbfb91f1c65aab267e2b8e9e75d4d85.tar.xz
org.eclipse.cdt-a79028d2fcbfb91f1c65aab267e2b8e9e75d4d85.zip
Bug 45203. User configurable header substitution rules.
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java
index 86c3fac94f5..3c43d789754 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java
@@ -2039,6 +2039,13 @@ public class PreferenceConstants {
public static final String INCLUDES_ALLOW_REORDERING = "organizeIncludes.allowReordering"; //$NON-NLS-1$
/**
+ * Whether indirect inclusion through a partner header file is allowed.
+ *
+ * @since 5.7
+ */
+ public static final String INCLUDES_ALLOW_PARTNER_INDIRECT_INCLUSION = "organizeIncludes.allowPartnerIndirectInclusion"; //$NON-NLS-1$
+
+ /**
* Determines what should be done with any unused include directives and forward declarations.
* This preference may have one of the three values defined by
* {@link org.eclipse.cdt.internal.ui.refactoring.includes.IncludePreferences.UnusedStatementDisposition}
@@ -2049,6 +2056,15 @@ public class PreferenceConstants {
public static final String INCLUDES_UNUSED_STATEMENTS_DISPOSITION = "organizeIncludes.unusedStatements"; //$NON-NLS-1$
/**
+ * Header file substitution rules.
+ * The value of the preference is an XML representation of one or more
+ * {@link org.eclipse.cdt.internal.ui.refactoring.includes.HeaderSubstitutionMap}s.
+ *
+ * @since 5.7
+ */
+ public static final String INCLUDES_HEADER_SUBSTITUTION = "organizeIncludes.headerSubstitution"; //$NON-NLS-1$
+
+ /**
* Include style for headers closely related to the including file.
* The value of the preference is an XML representation of
* {@link org.eclipse.cdt.internal.ui.refactoring.includes.IncludeGroupStyle}.

Back to the top