blob: e0a6292ca672553669dd78c58d477c94f5f17dd8 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2015, 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.r.core.source;
import java.util.List;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.statet.ecommons.text.core.sections.IDocContentSections;
import org.eclipse.statet.ecommons.text.core.treepartitioner.ITreePartitionNode;
public interface DocContentSectionsRweaveExtension extends IDocContentSections {
ITreePartitionNode getRChunkRegion(final IDocument document, final int offset)
throws BadLocationException;
List<ITreePartitionNode> getRChunkRegions(final IDocument document,
final int offset, final int length)
throws BadLocationException;
IRegion getRChunkContentRegion(final IDocument document, final int offset)
throws BadLocationException;
List<ITreePartitionNode> getRChunkCodeRegions(final IDocument document,
final int offset, final int length)
throws BadLocationException;
ITreePartitionNode getRCodeRegion(final IDocument document, final int offset)
throws BadLocationException;
}