Skip to main content
summaryrefslogtreecommitdiffstats
blob: c750d7123566b7bb1ea257808a7b755683035530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************************************
 * Copyright (c) 2007, 2010 Tasktop Technologies Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     David Green - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.provisional.commons.ui.commands;

import org.eclipse.ui.texteditor.DeleteLineAction;

/**
 * Command handler for delete line command (to end)
 * 
 * @author David Green
 */
public class DeleteLineToEndHandler extends AbstractDeleteLineHandler {
	public DeleteLineToEndHandler() {
		super(DeleteLineAction.TO_END, false);
	}
}

Back to the top