externalized constants for the Partitionscanner.
authormusk <musk>
Wed, 26 Mar 2003 08:15:27 +0000 (08:15 +0000)
committermusk <musk>
Wed, 26 Mar 2003 08:15:27 +0000 (08:15 +0000)
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/IPHPPartitionScannerConstants.java [new file with mode: 0644]

diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/IPHPPartitionScannerConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/IPHPPartitionScannerConstants.java
new file mode 100644 (file)
index 0000000..8e24e5e
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+ * Created on 05.03.2003
+ *
+ */
+package net.sourceforge.phpeclipse.phpeditor.php;
+
+/**
+ * @author Stefan Langer (musk)
+ *
+ */
+public interface IPHPPartitionScannerConstants
+{
+       public final static String PHP = "__php"; //$NON-NLS-1$
+       public final static String PHP_MULTILINE_COMMENT = "__php_multiline_comment";
+       public final static String JAVASCRIPT = "__javascript";
+       public final static String JS_MULTILINE_COMMENT = "__js_multiline_comment";
+       public final static String CSS = "__css";
+       public final static String CSS_MULTILINE_COMMENT = "__css_multiline_comment";
+       public final static String HTML = "__html";
+       public final static String HTML_MULTILINE_COMMENT = "__html_multiline_comment"; //$NON-NLS-1$
+}