Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.dltk.sh.ui/src/org/eclipse/dltk/sh/ui/text/IShellPartitions.java')
-rw-r--r--plugins/org.eclipse.dltk.sh.ui/src/org/eclipse/dltk/sh/ui/text/IShellPartitions.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/org.eclipse.dltk.sh.ui/src/org/eclipse/dltk/sh/ui/text/IShellPartitions.java b/plugins/org.eclipse.dltk.sh.ui/src/org/eclipse/dltk/sh/ui/text/IShellPartitions.java
index 5a3e05b..a27fe50 100644
--- a/plugins/org.eclipse.dltk.sh.ui/src/org/eclipse/dltk/sh/ui/text/IShellPartitions.java
+++ b/plugins/org.eclipse.dltk.sh.ui/src/org/eclipse/dltk/sh/ui/text/IShellPartitions.java
@@ -13,18 +13,18 @@ package org.eclipse.dltk.sh.ui.text;
import org.eclipse.jface.text.IDocument;
public interface IShellPartitions {
- public final static String SHELL_PARTITIONING = "__shell_partitioning";
+ String SHELL_PARTITIONING = "__shell_partitioning";
// Content types supplied by the shell script partitioner
- public static final String COMMENT_CONTENT_TYPE = "__comment";
- public static final String DOUBLE_QUOTE_CONTENT_TYPE = "__double_quote";
- public static final String PARAM_CONTENT_TYPE = "__parameter";
- public static final String EVAL_CONTENT_TYPE = "__eval";
- public static final String HASHBANG_CONTENT_TYPE = "__hashbang";
- public static final String FUNCTION_CONTENT_TYPE = "__function";
- public static final String SINGLE_QUOTE_CONTENT_TYPE = "__single_quote";
+ String COMMENT_CONTENT_TYPE = "__comment";
+ String DOUBLE_QUOTE_CONTENT_TYPE = "__double_quote";
+ String PARAM_CONTENT_TYPE = "__parameter";
+ String EVAL_CONTENT_TYPE = "__eval";
+ String HASHBANG_CONTENT_TYPE = "__hashbang";
+ String FUNCTION_CONTENT_TYPE = "__function";
+ String SINGLE_QUOTE_CONTENT_TYPE = "__single_quote";
- public static final String[] CONTENT_TYPES = new String[] { IDocument.DEFAULT_CONTENT_TYPE, HASHBANG_CONTENT_TYPE,
- COMMENT_CONTENT_TYPE, SINGLE_QUOTE_CONTENT_TYPE, DOUBLE_QUOTE_CONTENT_TYPE, PARAM_CONTENT_TYPE,
- EVAL_CONTENT_TYPE, FUNCTION_CONTENT_TYPE };
+ String[] CONTENT_TYPES = new String[] { IDocument.DEFAULT_CONTENT_TYPE, HASHBANG_CONTENT_TYPE, COMMENT_CONTENT_TYPE,
+ SINGLE_QUOTE_CONTENT_TYPE, DOUBLE_QUOTE_CONTENT_TYPE, PARAM_CONTENT_TYPE, EVAL_CONTENT_TYPE,
+ FUNCTION_CONTENT_TYPE };
} \ No newline at end of file

Back to the top