blob: 584908acd3137050b3c540c16da79d41613cc46f [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 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.redocs.tex.r.core.source;
import org.eclipse.statet.jcommons.collections.ImCollections;
import org.eclipse.statet.jcommons.collections.ImList;
import org.eclipse.statet.docmlet.tex.core.source.ITexDocumentConstants;
import org.eclipse.statet.r.core.source.IRDocumentConstants;
import org.eclipse.statet.redocs.r.core.source.IRweaveDocumentConstants;
public interface ITexRweaveDocumentConstants extends IRweaveDocumentConstants {
/**
* The id of partitioning of Sweave (LaTeX+R) documents.
*/
String LTX_R_PARTITIONING= "org.eclipse.statet.LtxRweave"; //$NON-NLS-1$
/**
* List with all partition content types of Sweave (LaTeX+R) documents.
*/
ImList<String> LTX_R_CONTENT_TYPES= ImCollections.concatList(
ITexDocumentConstants.LTX_CONTENT_TYPES,
RCHUNK_CONTENT_TYPES,
IRDocumentConstants.R_CONTENT_TYPES );
}