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 / ICssEditorActionDefinitionIds.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: ICssEditorActionDefinitionIds.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.ITextEditorActionDefinitionIds;
17
18 /**
19  * Action definition IDs used by the CSS editor.
20  */
21 public interface ICssEditorActionDefinitionIds
22         extends ITextEditorActionDefinitionIds {
23
24         /**
25          * Action definition ID of the "Source > Comment" action
26          * (value <code>"net.sourceforge.phpeclipse.css.ui.commentAction"</code>).
27          */
28         String COMMENT = "net.sourceforge.phpeclipse.css.ui.commentAction"; //$NON-NLS-1$
29
30         /**
31          * Action definition ID of the "Source &gt; Uncomment" action
32          * (value <code>"net.sourceforge.phpeclipse.css.ui.uncommentAction"</code>).
33          */
34         String UNCOMMENT = "net.sourceforge.phpeclipse.css.ui.uncommentAction"; //$NON-NLS-1$
35
36 }