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
diff --git a/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/editor/ICssEditorActionConstants.java b/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/editor/ICssEditorActionConstants.java
new file mode 100644 (file)
index 0000000..9c231f4
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * 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: ICssEditorActionConstants.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.ITextEditorActionConstants;
+
+/**
+ * 
+ */
+public interface ICssEditorActionConstants
+       extends ITextEditorActionConstants {
+
+       /**
+        * Edit menu: name of the standard global action "Content Assist"
+        * (value <code>"ContentAssist"</code>).
+        */
+       String CONTENT_ASSIST = "ContentAssist";  //$NON-NLS-1$
+
+       /**
+        * Source menu: name of standard global action "Comment"
+        * (value <code>"Comment"</code>).
+        */
+       String COMMENT = "Comment"; //$NON-NLS-1$
+
+       /**
+        * Source menu: name of standard global action "Uncomment"
+        * (value <code>"Uncomment"</code>).
+        */
+       String UNCOMMENT = "Uncomment"; //$NON-NLS-1$
+
+}