intial source from ttp://www.sf.net/projects/wdte
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.css.ui / src / net / sourceforge / phpeclipse / css / ui / internal / ICssUIHelpContextIds.java
1 /*
2  * Copyright (c) 2003-2004 Christopher Lenz 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  *     Christopher Lenz - initial API and implementation
10  * 
11  * $Id: ICssUIHelpContextIds.java,v 1.1 2004-09-02 18:11:49 jsurfer Exp $
12  */
13
14 package net.sourceforge.phpeclipse.css.ui.internal;
15
16 import net.sourceforge.phpeclipse.css.ui.CssUI;
17
18 /**
19  * Symbolic constants for the help context IDs.
20  */
21 public interface ICssUIHelpContextIds {
22
23         /** 
24          * The string with which all other defined ids are prefixed to construct
25          * help context ids. 
26          */
27         String PREFIX = CssUI.getPluginId() + "."; //$NON-NLS-1$
28
29         /**
30          * Help context ID for the CSS editor.
31          * Value: <code>"net.sourceforge.phpeclipse.css.ui.editor_context"</code>.
32          */
33         String EDITOR = PREFIX + "css_editor_context"; //$NON-NLS-1$
34
35 }