X-Git-Url: http://secure.phpeclipse.com
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
index d40577c..06d2c17 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
@@ -69,6 +69,15 @@ public interface IPreferenceConstants {
public static final String PHP_EDITOR_BACKGROUND = "_php_editor_background";
public static final String PHP_USERDEF_XMLFILE = "_userdef_xmlfile";
+ /** The color key for PHPDoc keywords (@foo
) in PHPDoc comments. */
+ public static final String PHPDOC_KEYWORD= "_php_doc_keyword"; //$NON-NLS-1$
+ /** The color key for HTML tags (<foo>
) in PHPDoc comments. */
+ public static final String PHPDOC_TAG= "_php_doc_tag"; //$NON-NLS-1$
+ /** The color key for PHPDoc links ({foo}
) in PHPDoc comments. */
+ public static final String PHPDOC_LINK= "_php_doc_link"; //$NON-NLS-1$
+ /** The color key for everthing in PHPDoc comments for which no other color is specified. */
+ public static final String PHPDOC_DEFAULT= "_php_doc_default"; //$NON-NLS-1$
+
/*Language stuff - under dev*/
public static final String RESOURCE_BUNDLE = "_php_editor_res_bundle"; //$NON-NLS-1$
public static final String LANGUAGE_DEFAULT = "net.sourceforge.phpeclipse.newPHPPreferencesMessages_en_GB";