KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > apt > ui > internal > util > IAptHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2005, 2007 BEA Systems, Inc.
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  * wharley@bea.com - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.jdt.apt.ui.internal.util;
13
14 import org.eclipse.jdt.apt.ui.internal.AptUIPlugin;
15
16 /**
17  * Help context ids for the Java annotation processing UI.
18  * <p>
19  * This interface contains constants only; it is not intended to be implemented
20  * or extended.
21  */

22 public interface IAptHelpContextIds {
23     public static final String JavaDoc PREFIX= AptUIPlugin.PLUGIN_ID + '.';
24
25     // Dialogs
26
public static final String JavaDoc ADVANCED_FACTORYPATH_OPTIONS_DIALOG= PREFIX + "advanced_factory_path_options_dialog_context"; //$NON-NLS-1$
27
public static final String JavaDoc PROCESSOR_OPTION_INPUT_DIALOG= PREFIX + "processor_option_input_dialog_context"; //$NON-NLS-1$
28

29     // Preference/Property pages
30
public static final String JavaDoc APTCONFIGURATION_PREFERENCE_PAGE= PREFIX + "apt_configuration_preference_page_context"; //$NON-NLS-1$
31
public static final String JavaDoc FACTORYPATH_PREFERENCE_PAGE= PREFIX + "factory_path_preference_page_context"; //$NON-NLS-1$
32
}
33
Popular Tags