/* * 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 "net.sourceforge.phpeclipse.css.ui.commentAction"). */ String COMMENT = "net.sourceforge.phpeclipse.css.ui.commentAction"; //$NON-NLS-1$ /** * Action definition ID of the "Source > Uncomment" action * (value "net.sourceforge.phpeclipse.css.ui.uncommentAction"). */ String UNCOMMENT = "net.sourceforge.phpeclipse.css.ui.uncommentAction"; //$NON-NLS-1$ }