/** * <copyright> * </copyright> * * */ package robot.resource.robot.ui; /** * An interface that defines some constants used to create the keys for * preferences. */ public interface RobotPreferenceConstants { // Constants for syntax highlighting /** * Preference key suffix to enable syntax highlighting for a token type. */ public static final String EDITOR_ENABLE_SUFFIX = "_enable"; public static final String EDITOR_COLOR_SUFFIX = "_color"; // Constants for brackets public static final String EDITOR_MATCHING_BRACKETS_COLOR = "_matchingBracketsColor"; public static final String EDITOR_MATCHING_BRACKETS_CHECKBOX = "_matchingBracketsCheckbox"; public static final String EDITOR_BRACKETS_SUFFIX = "_brackets"; }