blob: 367f0b46eab0ff00caa19efde884f7f4c6e0c5f3 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2009, 2019 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.internal.redocs.tex.r.ui.editors;
import org.eclipse.statet.docmlet.tex.core.model.TexModel;
import org.eclipse.statet.docmlet.tex.core.refactoring.TexRefactoring;
import org.eclipse.statet.ltk.refactoring.core.CommonRefactoringFactory;
import org.eclipse.statet.ltk.refactoring.core.MultiRefactoringFactory;
import org.eclipse.statet.r.core.model.RModel;
import org.eclipse.statet.r.core.refactoring.RRefactoring;
public class LtxRweaveRefactoringFactory extends MultiRefactoringFactory {
private static final LtxRweaveRefactoringFactory INSTANCE= new LtxRweaveRefactoringFactory();
public static LtxRweaveRefactoringFactory getInstance() {
return INSTANCE;
}
public LtxRweaveRefactoringFactory() {
super(TexModel.LTX_TYPE_ID, TexRefactoring.getLtxFactory());
}
@Override
protected CommonRefactoringFactory createFactory(final String modelTypeId) {
switch (modelTypeId) {
case RModel.R_TYPE_ID:
return RRefactoring.getFactory();
default:
return null;
}
}
}