KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > ui > IAntUIPreferenceConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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  * John-Mason P. Shackelford (john-mason.shackelford@pearson.com) - bug 53547
11  *******************************************************************************/

12 package org.eclipse.ant.internal.ui;
13
14 /**
15  * Constants used to identify user preferences.
16  */

17 public interface IAntUIPreferenceConstants {
18
19     public static final String JavaDoc ANTVIEW_INCLUDE_ERROR_SEARCH_RESULTS = "antview.includeErrorSearchResults"; //$NON-NLS-1$
20
public static final String JavaDoc ANTVIEW_LAST_SEARCH_STRING = "antview.lastSearchString"; //$NON-NLS-1$
21
public static final String JavaDoc ANTVIEW_LAST_WORKINGSET_SEARCH_SCOPE = "antview.lastSearchScope"; //$NON-NLS-1$
22
public static final String JavaDoc ANTVIEW_USE_WORKINGSET_SEARCH_SCOPE = "antview.useWorkingSetSearchScope"; //$NON-NLS-1$
23

24     public static final String JavaDoc ANT_FIND_BUILD_FILE_NAMES = "ant.findBuildFileNames"; //$NON-NLS-1$
25

26     /**
27      * The symbolic names for colors for displaying the content in the Console
28      * @see org.eclipse.jface.resource.ColorRegistry
29      */

30     public static final String JavaDoc CONSOLE_ERROR_COLOR = "org.eclipse.ant.ui.errorColor"; //$NON-NLS-1$
31
public static final String JavaDoc CONSOLE_WARNING_COLOR = "org.eclipse.ant.ui.warningColor"; //$NON-NLS-1$
32
public static final String JavaDoc CONSOLE_INFO_COLOR = "org.eclipse.ant.ui.informationColor"; //$NON-NLS-1$
33
public static final String JavaDoc CONSOLE_VERBOSE_COLOR = "org.eclipse.ant.ui.verboseColor"; //$NON-NLS-1$
34
public static final String JavaDoc CONSOLE_DEBUG_COLOR = "org.eclipse.ant.ui.debugColor"; //$NON-NLS-1$
35

36     public static final String JavaDoc ANT_TOOLS_JAR_WARNING= "toolsJAR"; //$NON-NLS-1$
37

38     /**
39      * int preference identifier constant which specifies the length of time to wait
40      * to connect with the socket that communicates with the separate JRE to capture the output
41      */

42     public static final String JavaDoc ANT_COMMUNICATION_TIMEOUT= "timeout"; //$NON-NLS-1$
43

44     public static final String JavaDoc ANT_ERROR_DIALOG= "errorDialog"; //$NON-NLS-1$
45

46     /**
47      * Boolean preference identifier constant which specifies whether to create Java problem markers
48      * from the javac output of Ant builds.
49      */

50     public static final String JavaDoc ANT_CREATE_MARKERS= "createMarkers"; //$NON-NLS-1$
51

52     /**
53      * Boolean preference identifier constant which specifies whether the Ant editor should
54      * show internal targets in the Outline.
55      */

56     public static final String JavaDoc ANTEDITOR_FILTER_INTERNAL_TARGETS= "anteditor.filterInternalTargets"; //$NON-NLS-1$
57

58     /**
59      * Boolean preference identifier constant which specifies whether the Ant editor should
60      * show imported elements in the Outline.
61      */

62     public static final String JavaDoc ANTEDITOR_FILTER_IMPORTED_ELEMENTS = "anteditor.filterImportedElements"; //$NON-NLS-1$
63

64     /**
65      * Boolean preference identifier constant which specifies whether the Ant editor should
66      * show properties in the Outline.
67      */

68     public static final String JavaDoc ANTEDITOR_FILTER_PROPERTIES= "anteditor.filterProperties"; //$NON-NLS-1$
69

70     /**
71      * Boolean preference identifier constant which specifies whether the Ant editor should
72      * show top level tasks/types in the Outline.
73      */

74     public static final String JavaDoc ANTEDITOR_FILTER_TOP_LEVEL= "anteditor.filterTopLevel"; //$NON-NLS-1$
75

76     /**
77      * Boolean preference identifier constant which specifies whether the Ant editor should
78      * sort elements in the Outline.
79      */

80     public static final String JavaDoc ANTEDITOR_SORT= "anteditor.sort"; //$NON-NLS-1$
81

82     /**
83      * Boolean preference identifier constant which specifies whether the Ant Outline page
84      * links its selection to the active Ant editor.
85      */

86     public static final String JavaDoc OUTLINE_LINK_WITH_EDITOR= "outline.linkWithEditor"; //$NON-NLS-1$
87

88     /**
89      * String preference identifier constant which specifies the URL for the location of the
90      * Ant documentation.
91      */

92     public static final String JavaDoc DOCUMENTATION_URL = "documentation.url"; //$NON-NLS-1$
93
}
94
Popular Tags