Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ITextEditorHelpContextIds.java')
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ITextEditorHelpContextIds.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ITextEditorHelpContextIds.java b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ITextEditorHelpContextIds.java
new file mode 100644
index 00000000000..b4db6a9f77d
--- /dev/null
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/ITextEditorHelpContextIds.java
@@ -0,0 +1,33 @@
+/**********************************************************************
+Copyright (c) 2000, 2002 IBM Corp. 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 Corporation - Initial implementation
+**********************************************************************/
+
+package org.eclipse.ui.editors.text;
+
+import org.eclipse.ui.texteditor.IAbstractTextEditorHelpContextIds;
+
+/**
+ * Help context ids for the text editor. <p>
+ * This interface contains constants only; it is not intended to be implemented.
+ */
+public interface ITextEditorHelpContextIds extends IAbstractTextEditorHelpContextIds {
+
+ /**
+ * Id for the text editor preference page.
+ * Default value: <code>"text_editor_preference_page_context"</code>.
+ */
+ public static final String TEXT_EDITOR_PREFERENCE_PAGE= PREFIX + "text_editor_preference_page_context"; //$NON-NLS-1$
+
+ /**
+ * Id for the text editor.
+ * Default value: <code>"text_editor_context"</code>.
+ */
+ public static final String TEXT_EDITOR= PREFIX + "text_editor_context"; //$NON-NLS-1$
+} \ No newline at end of file

Back to the top