externalized constants for the Partitionscanner.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / IPHPPartitionScannerConstants.java
1 /*
2  * Created on 05.03.2003
3  *
4  */
5 package net.sourceforge.phpeclipse.phpeditor.php;
6
7 /**
8  * @author Stefan Langer (musk)
9  *
10  */
11 public interface IPHPPartitionScannerConstants
12 {
13         public final static String PHP = "__php"; //$NON-NLS-1$
14         public final static String PHP_MULTILINE_COMMENT = "__php_multiline_comment";
15         public final static String JAVASCRIPT = "__javascript";
16         public final static String JS_MULTILINE_COMMENT = "__js_multiline_comment";
17         public final static String CSS = "__css";
18         public final static String CSS_MULTILINE_COMMENT = "__css_multiline_comment";
19         public final static String HTML = "__html";
20         public final static String HTML_MULTILINE_COMMENT = "__html_multiline_comment"; //$NON-NLS-1$
21 }