blob: 21990d7d8b34a6d0dd51062079089228ce2221c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Tom Seidel, Remus Software
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
*
* Contributors:
* Tom Seidel - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.htmltext.commands.basicstyle;
import org.eclipse.mylyn.htmltext.commands.Command;
/**
* @author Tom Seidel <tom.seidel@remus-software.org>
*/
public class UnderlineCommand extends Command {
@Override
public String getCommandIdentifier() {
return "underline";
}
}