blob: 85c7ae929e2b3c9d058b23589d464af3f58a2ac2 [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;
import org.eclipse.core.filesystem.IFileStore;
import org.eclipse.statet.internal.redocs.tex.r.model.LtxRweaveEditorWorkingCopy;
import org.eclipse.statet.ltk.model.core.elements.ISourceUnit;
import org.eclipse.statet.ltk.model.core.elements.IWorkspaceSourceUnit;
import org.eclipse.statet.ltk.model.core.impl.AbstractEditorSourceUnitFactory;
import org.eclipse.statet.r.core.model.IRWorkspaceSourceUnit;
public final class LtxRweaveEditorUnitFactory extends AbstractEditorSourceUnitFactory {
public LtxRweaveEditorUnitFactory() {
}
@Override
protected ISourceUnit createSourceUnit(final String id, final IWorkspaceSourceUnit su) {
return new LtxRweaveEditorWorkingCopy((IRWorkspaceSourceUnit) su);
}
@Override
protected ISourceUnit createSourceUnit(final String id, final IFileStore file) {
return null;
}
}