KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-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.model;
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     public static final String JavaDoc ANT_ERROR_DIALOG= "errorDialog"; //$NON-NLS-1$
39

40     /**
41      * Boolean preference identifier constant which specifies whether the Ant editor should
42      * show internal targets in the Outline.
43      */

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

46     /**
47      * Boolean preference identifier constant which specifies whether the Ant editor should
48      * show imported elements in the Outline.
49      */

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

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

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

58     /**
59      * Boolean preference identifier constant which specifies whether the Ant editor should
60      * show top level tasks/types in the Outline.
61      */

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

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

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

70     /**
71      * Boolean preference identifier constant which specifies whether the Ant Outline page
72      * links its selection to the active Ant editor.
73      */

74     public static final String JavaDoc OUTLINE_LINK_WITH_EDITOR= "outline.linkWithEditor"; //$NON-NLS-1$
75
}
Popular Tags