2 * Created on 05.03.2003
5 package net.sourceforge.phpeclipse.phpeditor.php;
8 * @author Stefan Langer (musk)
11 public interface IPHPPartitionScannerConstants
13 public final static String PHP = "__php"; //$NON-NLS-1$
14 public final static String PHP_MULTILINE_COMMENT = "__php_multiline_comment"; //$NON-NLS-1$
15 public final static String PHP_STRING = "__php_string"; //$NON-NLS-1$
16 public final static String JAVASCRIPT = "__javascript"; //$NON-NLS-1$
17 public final static String JS_MULTILINE_COMMENT = "__js_multiline_comment"; //$NON-NLS-1$
18 public final static String CSS = "__css"; //$NON-NLS-1$
19 public final static String CSS_MULTILINE_COMMENT = "__css_multiline_comment"; //$NON-NLS-1$
20 public final static String HTML = "__html"; //$NON-NLS-1$
21 public final static String HTML_MULTILINE_COMMENT = "__html_multiline_comment"; //$NON-NLS-1$
22 public final static String SMARTY = "__smarty"; //$NON-NLS-1$
23 public final static String SMARTY_MULTILINE_COMMENT = "__smarty_multiline_comment"; //$NON-NLS-1$
25 public final static int PHP_FILE = 1;
26 public final static int HTML_FILE = 2;
27 public final static int XML_FILE = 3;
28 public final static int SMARTY_FILE = 4;