blob: e6084ece91a14da0c7597e99e6824b3dfec154d9 [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.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.internal.r.core.refactoring.RRefactoringFactory;
import org.eclipse.statet.ltk.refactoring.core.CommonRefactoringFactory;
/**
* R refactoring
*/
@NonNullByDefault
public class RRefactoring {
private static final CommonRefactoringFactory R_FACTORY= new RRefactoringFactory();
public static CommonRefactoringFactory getFactory() {
return R_FACTORY;
}
public static final String DELETE_ELEMENTS_REFACTORING_ID= "org.eclipse.statet.r.refactoring.DeleteElementsOperation"; //$NON-NLS-1$
public static final String RENAME_IN_WORKSPACE_REFACTORING_ID= "org.eclipse.statet.r.refactoring.RenameInWorkspaceOperation"; //$NON-NLS-1$
public static final String RENAME_IN_REGION_REFACTORING_ID= "org.eclipse.statet.r.refactoring.RenameInRegionOperation"; //$NON-NLS-1$
public static final String INLINE_TEMP_REFACTORING_ID= "org.eclipse.statet.r.refactoring.InlineTempOperation"; //$NON-NLS-1$
public static final String EXTRACT_TEMP_REFACTORING_ID= "org.eclipse.statet.r.refactoring.ExtractTempOperation"; //$NON-NLS-1$
public static final String EXTRACT_FUNCTION_REFACTORING_ID= "org.eclipse.statet.r.refactoring.ExtractFunctionOperation"; //$NON-NLS-1$
public static final String CONVERT_FUNCTION_TO_S4_METHOD_REFACTORING_ID= "org.eclipse.statet.r.refactoring.ConvertFunctionToS4MethodOperation"; //$NON-NLS-1$
public static final String PASTE_CODE_REFACTORING_ID= "org.eclipse.statet.r.refactoring.PasteCodeOperation"; //$NON-NLS-1$
public static final String DELETE_ELEMENTS_PROCESSOR_ID= "org.eclipse.statet.r.refactoring.DeleteElementsProcessor"; //$NON-NLS-1$
public static final String PASTE_CODE_PROCESSOR_ID= "org.eclipse.statet.r.refactoring.PasteCodeProcessor"; //$NON-NLS-1$
}