blob: 511a5fc87d891ea402dd22160abb04f36a04e72b [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 IDocContentSectionsRweaveExtension extends IDocContentSections {
ITreePartitionNode getRChunkRegion(IDocument document, int offset)
throws BadLocationException;
List<ITreePartitionNode> getRChunkRegions(IDocument document, int offset, int length)
throws BadLocationException;
IRegion getRChunkContentRegion(IDocument document, int offset)
throws BadLocationException;
List<ITreePartitionNode> getRChunkCodeRegions(IDocument document, int offset, int length)
throws BadLocationException;
ITreePartitionNode getRCodeRegion(IDocument document, int offset)
throws BadLocationException;
}