blob: d4ae2af532df652f0faf9f0a2f03aa796c31a43a [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2008, 2021 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.r.core.refactoring;
import org.eclipse.statet.ltk.model.core.ElementSet;
import org.eclipse.statet.ltk.refactoring.core.CommonDeleteProcessor;
public class RDeleteProcessor extends CommonDeleteProcessor {
public RDeleteProcessor(final ElementSet elements, final RRefactoringAdapter adapter) {
super(elements, adapter);
}
@Override
public String getIdentifier() {
return RRefactoring.DELETE_ELEMENTS_PROCESSOR_ID;
}
@Override
protected String getRefactoringIdentifier() {
return RRefactoring.DELETE_ELEMENTS_REFACTORING_ID;
}
}