/* * 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 "ContentAssist"). */ String CONTENT_ASSIST = "ContentAssist"; //$NON-NLS-1$ /** * Source menu: name of standard global action "Comment" * (value "Comment"). */ String COMMENT = "Comment"; //$NON-NLS-1$ /** * Source menu: name of standard global action "Uncomment" * (value "Uncomment"). */ String UNCOMMENT = "Uncomment"; //$NON-NLS-1$ }