KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > ui > debug > IAntDebugConstants


1 /*******************************************************************************
2  * Copyright (c) 2004, 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.ant.internal.ui.debug;
13
14 public interface IAntDebugConstants {
15     
16     /**
17      * Unique identifier for the Ant debug model (value
18      * <code>org.eclipse.ant.ui.debug</code>).
19      */

20     public static final String JavaDoc ID_ANT_DEBUG_MODEL = "org.eclipse.ant.ui.debug"; //$NON-NLS-1$
21

22     /**
23      * Unique identifier for the Ant line breakpoint markers
24      * (value <code>org.eclipse.ant.ui.antLineBreakpointMarker</code>).
25      */

26     public static final String JavaDoc ID_ANT_LINE_BREAKPOINT_MARKER= "org.eclipse.ant.ui.antLineBreakpointMarker"; //$NON-NLS-1$
27

28     /**
29      * Unique identifier for the Ant run to line breakpoints
30      * (value <code>org.eclipse.ant.ui.runToLineBreakpoint</code>).
31      */

32     public static final String JavaDoc ANT_RUN_TO_LINE= "org.eclipse.ant.ui.runToLineBreakpoint"; //$NON-NLS-1$
33
}
34
Popular Tags