blob: bfebbf03caf33f3939fec9f941fdcdd9d4e38102 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.views.markers;
/**
* MarkerSupportConstants is a static class that supplies commonly used constants.
*
* @since 3.4
*
*/
public class MarkerSupportConstants {
/**
* The icon attribute name from a configuration element.
*/
public static final String ATTRIBUTE_ICON = "icon"; //$NON-NLS-1$
/**
* The id attribute name from a configuration element.
*/
public static final String ATTRIBUTE_ID = "id"; //$NON-NLS-1$
/**
* The name attribute name from a configuration element.
*/
public static final String ATTRIBUTE_NAME = "name"; //$NON-NLS-1$
/**
* The name attribute name from a configuration element.
*/
public static final String ATTRIBUTE_TYPE = "type"; //$NON-NLS-1$
/**
* A reusable empty {@link String}
*/
public static final String EMPTY_STRING = ""; //$NON-NLS-1$
/**
* The constant used to specify the contains value on
* a {@link FiltersContributionParameters}
*/
public static final String CONTAINS_KEY = "CONTAINS"; //$NON-NLS-1$
/**
* The constant used to specify the does not contain value on
* a {@link FiltersContributionParameters}
*/
public static String DOES_NOT_CONTAIN_KEY = "DOES_NOT_CONTAIN"; //$NON-NLS-1$
}