X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/ui/IPreferenceConstants.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/ui/IPreferenceConstants.java index 055fea5..ec9f0f9 100644 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/ui/IPreferenceConstants.java +++ b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/ui/IPreferenceConstants.java @@ -20,14 +20,14 @@ public interface IPreferenceConstants { // "_show_xml_files_local"; /** * Preference key suffix for bold text style preference keys. - * + * * @since 2.1 */ public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$ /** * Preference key suffix for italic text style preference keys. - * + * * @since 3.0 */ public static final String EDITOR_ITALIC_SUFFIX = "_italic"; //$NON-NLS-1$ @@ -92,7 +92,7 @@ public interface IPreferenceConstants { /** * The color key for operators and brackets in PHP code (value * "__php_operator"). - * + * * @since 3.0 */ public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$ @@ -100,7 +100,7 @@ public interface IPreferenceConstants { /** * The color key for {} in PHP code (value * "__php_brace_operator"). - * + * * @since 3.0 */ public static final String PHP_BRACE_OPERATOR = "__php_brace_operator"; //$NON-NLS-1$ @@ -112,7 +112,7 @@ public interface IPreferenceConstants { * Value is of type String. A RGB color value encoded as a * string using class PreferenceConverter *

- * + * * @see org.eclipse.jface.resource.StringConverter * @see org.eclipse.jface.preference.PreferenceConverter * @since 3.0 @@ -125,11 +125,10 @@ public interface IPreferenceConstants { *

* Value is of type Boolean. *

- * + * * @since 3.0 */ - public final static String EDITOR_PHP_OPERATOR_BOLD = PHP_OPERATOR - + EDITOR_BOLD_SUFFIX; + public final static String EDITOR_PHP_OPERATOR_BOLD = PHP_OPERATOR + EDITOR_BOLD_SUFFIX; /** * A named preference that controls whether operators and brackets are @@ -137,11 +136,10 @@ public interface IPreferenceConstants { *

* Value is of type Boolean. *

- * + * * @since 3.0 */ - public final static String EDITOR_PHP_OPERATOR_ITALIC = PHP_OPERATOR - + EDITOR_ITALIC_SUFFIX; + public final static String EDITOR_PHP_OPERATOR_ITALIC = PHP_OPERATOR + EDITOR_ITALIC_SUFFIX; /** * A named preference that holds the color used to render operators and @@ -150,7 +148,7 @@ public interface IPreferenceConstants { * Value is of type String. A RGB color value encoded as a * string using class PreferenceConverter *

- * + * * @see org.eclipse.jface.resource.StringConverter * @see org.eclipse.jface.preference.PreferenceConverter * @since 3.0 @@ -163,11 +161,10 @@ public interface IPreferenceConstants { *

* Value is of type Boolean. *

- * + * * @since 3.0 */ - public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = PHP_BRACE_OPERATOR - + EDITOR_BOLD_SUFFIX; + public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX; /** * A named preference that controls whether operators and brackets are @@ -175,7 +172,7 @@ public interface IPreferenceConstants { *

* Value is of type Boolean. *

- * + * * @since 3.0 */ public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = PHP_BRACE_OPERATOR @@ -184,7 +181,7 @@ public interface IPreferenceConstants { /** * The color key for keyword 'return' in PHP code (value * "__php_keyword_return"). - * + * * @since 3.0 */ public static final String PHP_KEYWORD_RETURN = "__php_keyword_return"; //$NON-NLS-1$ @@ -196,7 +193,7 @@ public interface IPreferenceConstants { * Value is of type String. A RGB color value encoded as a * string using class PreferenceConverter *

- * + * * @see org.eclipse.jface.resource.StringConverter * @see org.eclipse.jface.preference.PreferenceConverter * @since 3.0 @@ -209,11 +206,10 @@ public interface IPreferenceConstants { *

* Value is of type Boolean. *

- * + * * @since 3.0 */ - public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = PHP_KEYWORD_RETURN - + EDITOR_BOLD_SUFFIX; + public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = PHP_KEYWORD_RETURN + EDITOR_BOLD_SUFFIX; /** * A named preference that controls whether 'return' keyword is rendered in @@ -221,11 +217,10 @@ public interface IPreferenceConstants { *

* Value is of type Boolean. *

- * + * * @since 3.0 */ - public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = PHP_KEYWORD_RETURN - + EDITOR_ITALIC_SUFFIX; + public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = PHP_KEYWORD_RETURN + EDITOR_ITALIC_SUFFIX; public static final String PHP_SINGLELINE_COMMENT = "_php_singlelineComment";