blob: d64ead57c9d583797e4e6defa188e3477ee515db [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2020 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.wikitext.r.core.source;
import org.eclipse.statet.jcommons.collections.ImCollections;
import org.eclipse.statet.jcommons.collections.ImList;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.docmlet.wikitext.core.source.WikitextDocumentConstants;
import org.eclipse.statet.r.core.source.IRDocumentConstants;
import org.eclipse.statet.redocs.r.core.source.RweaveDocumentConstants;
@NonNullByDefault
public interface WikitextRweaveDocumentConstants extends RweaveDocumentConstants {
/**
* The id of partitioning of Wikitext+R documents.
*/
String WIKIDOC_R_PARTITIONING= "org.eclipse.statet.WikidocRweave"; //$NON-NLS-1$
/**
* List with all partition content types of Wikitext+R documents.
*/
ImList<String> WIKIDOC_R_CONTENT_TYPES= ImCollections.concatList(
WikitextDocumentConstants.WIKIDOC_EXT_CONTENT_TYPES,
RCHUNK_CONTENT_TYPES,
IRDocumentConstants.R_CONTENT_TYPES );
}