intial source from ttp://www.sf.net/projects/wdte
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.css.ui / src / net / sourceforge / phpeclipse / css / ui / internal / editor / ICssEditorActionConstants.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: ICssEditorActionConstants.java,v 1.1 2004-09-02 18:11:50 jsurfer Exp $
12  */
13
14 package net.sourceforge.phpeclipse.css.ui.internal.editor;
15
16 import org.eclipse.ui.texteditor.ITextEditorActionConstants;
17
18 /**
19  * 
20  */
21 public interface ICssEditorActionConstants
22         extends ITextEditorActionConstants {
23
24         /**
25          * Edit menu: name of the standard global action "Content Assist"
26          * (value <code>"ContentAssist"</code>).
27          */
28         String CONTENT_ASSIST = "ContentAssist";  //$NON-NLS-1$
29
30         /**
31          * Source menu: name of standard global action "Comment"
32          * (value <code>"Comment"</code>).
33          */
34         String COMMENT = "Comment"; //$NON-NLS-1$
35
36         /**
37          * Source menu: name of standard global action "Uncomment"
38          * (value <code>"Uncomment"</code>).
39          */
40         String UNCOMMENT = "Uncomment"; //$NON-NLS-1$
41
42 }