X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPPartitionScanner.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPPartitionScanner.java index df3d421..213ff71 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPPartitionScanner.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPPartitionScanner.java @@ -24,13 +24,14 @@ import org.eclipse.jface.text.rules.Token; /** * This scanner recognizes the JavaDoc comments and Java multi line comments. */ -public class PHPPartitionScanner extends RuleBasedPartitionScanner { - - private final static String SKIP = "__skip"; //$NON-NLS-1$ - public final static String HTML_MULTILINE_COMMENT = "__html_multiline_comment"; //$NON-NLS-1$ - // public final static String JAVA_DOC= "__java_javadoc"; //$NON-NLS-1$ - public final static String PHP = "__php"; //$NON-NLS-1$ - //public final static String HTML = "__html"; //$NON-NLS-1$ +public class PHPPartitionScanner extends RuleBasedPartitionScanner implements IPHPPartitionScannerConstants { + + // private final static String SKIP = "__skip"; //$NON-NLS-1$ + +// public final static String HTML_MULTILINE_COMMENT = "__html_multiline_comment"; //$NON-NLS-1$ +// // public final static String JAVA_DOC= "__java_javadoc"; //$NON-NLS-1$ +// public final static String PHP = "__php"; //$NON-NLS-1$ +// //public final static String HTML = "__html"; //$NON-NLS-1$ public final static IToken php = new Token(PHP); //public final static IToken html = new Token(HTML);