/******************************************************************************* * Copyright (c) 2000, 2005 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.tasklist; /** * This interface defines constants used for marker properties * and attributes. * * @see org.eclipse.core.resources.IMarker */ interface IMarkerConstants { public static final String PREFIX = "org.eclipse.ui.tasklist."; //$NON-NLS-1$ public static final String P_PRIORITY_IMAGE = PREFIX + "priorityImage"; //$NON-NLS-1$ public static final String P_COMPLETE_IMAGE = PREFIX + "completeImage"; //$NON-NLS-1$ public static final String P_RESOURCE_NAME = PREFIX + "resourceName"; //$NON-NLS-1$ public static final String P_CONTAINER_NAME = PREFIX + "containerName"; //$NON-NLS-1$ public static final String P_LINE_AND_LOCATION = PREFIX + "lineAndLocation"; //$NON-NLS-1$ }