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
diff --git a/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/editor/ICssEditorActionDefinitionIds.java b/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/editor/ICssEditorActionDefinitionIds.java
new file mode 100644 (file)
index 0000000..da4ad4a
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2003-2004 Christopher Lenz and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ * 
+ * Contributors:
+ *     Christopher Lenz - initial API and implementation
+ * 
+ * $Id: ICssEditorActionDefinitionIds.java,v 1.1 2004-09-02 18:11:50 jsurfer Exp $
+ */
+
+package net.sourceforge.phpeclipse.css.ui.internal.editor;
+
+import org.eclipse.ui.texteditor.ITextEditorActionDefinitionIds;
+
+/**
+ * Action definition IDs used by the CSS editor.
+ */
+public interface ICssEditorActionDefinitionIds
+       extends ITextEditorActionDefinitionIds {
+
+       /**
+        * Action definition ID of the "Source > Comment" action
+        * (value <code>"net.sourceforge.phpeclipse.css.ui.commentAction"</code>).
+        */
+       String COMMENT = "net.sourceforge.phpeclipse.css.ui.commentAction"; //$NON-NLS-1$
+
+       /**
+        * Action definition ID of the "Source &gt; Uncomment" action
+        * (value <code>"net.sourceforge.phpeclipse.css.ui.uncommentAction"</code>).
+        */
+       String UNCOMMENT = "net.sourceforge.phpeclipse.css.ui.uncommentAction"; //$NON-NLS-1$
+
+}