KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > tasklist > IMarkerConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.ui.views.tasklist;
13
14 /**
15  * This interface defines constants used for marker properties
16  * and attributes.
17  *
18  * @see org.eclipse.core.resources.IMarker
19  */

20 interface IMarkerConstants {
21     public static final String JavaDoc PREFIX = "org.eclipse.ui.tasklist."; //$NON-NLS-1$
22

23     public static final String JavaDoc P_PRIORITY_IMAGE = PREFIX + "priorityImage"; //$NON-NLS-1$
24

25     public static final String JavaDoc P_COMPLETE_IMAGE = PREFIX + "completeImage"; //$NON-NLS-1$
26

27     public static final String JavaDoc P_RESOURCE_NAME = PREFIX + "resourceName"; //$NON-NLS-1$
28

29     public static final String JavaDoc P_CONTAINER_NAME = PREFIX + "containerName"; //$NON-NLS-1$
30

31     public static final String JavaDoc P_LINE_AND_LOCATION = PREFIX + "lineAndLocation"; //$NON-NLS-1$
32
}
33
Popular Tags