misc changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / IPHPPartitions.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/IPHPPartitions.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/IPHPPartitions.java
new file mode 100644 (file)
index 0000000..0e582b6
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Created on 05.03.2003
+ *
+ */
+package net.sourceforge.phpdt.internal.ui.text;
+
+/**
+ * @author Stefan Langer (musk)
+ *
+ */
+public interface IPHPPartitions
+{
+       public final static String PHP_PARTITIONING = "__php"; //$NON-NLS-1$
+       public final static String PHP_MULTILINE_COMMENT = "__php_multiline_comment"; //$NON-NLS-1$
+    public final static String PHP_STRING = "__php_string"; //$NON-NLS-1$
+       public final static String JAVASCRIPT = "__javascript"; //$NON-NLS-1$
+       public final static String JS_MULTILINE_COMMENT = "__js_multiline_comment"; //$NON-NLS-1$
+       public final static String CSS = "__css"; //$NON-NLS-1$
+       public final static String CSS_MULTILINE_COMMENT = "__css_multiline_comment"; //$NON-NLS-1$
+       public final static String HTML = "__html"; //$NON-NLS-1$
+       public final static String HTML_MULTILINE_COMMENT = "__html_multiline_comment"; //$NON-NLS-1$
+       public final static String SMARTY = "__smarty"; //$NON-NLS-1$
+       public final static String SMARTY_MULTILINE_COMMENT = "__smarty_multiline_comment"; //$NON-NLS-1$
+       
+       public final static int PHP_FILE = 1; 
+       public final static int HTML_FILE = 2; 
+       public final static int XML_FILE = 3; 
+       public final static int SMARTY_FILE = 4; 
+}