// "_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$
/**
* The color key for operators and brackets in PHP code (value
* <code>"__php_operator"</code>).
- *
+ *
* @since 3.0
*/
public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$
/**
* The color key for {} in PHP code (value
* <code>"__php_brace_operator"</code>).
- *
+ *
* @since 3.0
*/
public static final String PHP_BRACE_OPERATOR = "__php_brace_operator"; //$NON-NLS-1$
* Value is of type <code>String</code>. A RGB color value encoded as a
* string using class <code>PreferenceConverter</code>
* </p>
- *
+ *
* @see org.eclipse.jface.resource.StringConverter
* @see org.eclipse.jface.preference.PreferenceConverter
* @since 3.0
* <p>
* Value is of type <code>Boolean</code>.
* </p>
- *
+ *
* @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
* <p>
* Value is of type <code>Boolean</code>.
* </p>
- *
+ *
* @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
* Value is of type <code>String</code>. A RGB color value encoded as a
* string using class <code>PreferenceConverter</code>
* </p>
- *
+ *
* @see org.eclipse.jface.resource.StringConverter
* @see org.eclipse.jface.preference.PreferenceConverter
* @since 3.0
* <p>
* Value is of type <code>Boolean</code>.
* </p>
- *
+ *
* @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
* <p>
* Value is of type <code>Boolean</code>.
* </p>
- *
+ *
* @since 3.0
*/
public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = PHP_BRACE_OPERATOR
/**
* The color key for keyword 'return' in PHP code (value
* <code>"__php_keyword_return"</code>).
- *
+ *
* @since 3.0
*/
public static final String PHP_KEYWORD_RETURN = "__php_keyword_return"; //$NON-NLS-1$
* Value is of type <code>String</code>. A RGB color value encoded as a
* string using class <code>PreferenceConverter</code>
* </p>
- *
+ *
* @see org.eclipse.jface.resource.StringConverter
* @see org.eclipse.jface.preference.PreferenceConverter
* @since 3.0
* <p>
* Value is of type <code>Boolean</code>.
* </p>
- *
+ *
* @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
* <p>
* Value is of type <code>Boolean</code>.
* </p>
- *
+ *
* @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";