blob: 72766c78256a8ae13e50123d1c81d42fee87a6af [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2009, 2017 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.r.nico;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.statet.r.console.core.IRDataAdapter;
import org.eclipse.statet.r.core.data.ICombinedRElement;
import org.eclipse.statet.r.core.model.RElementName;
import org.eclipse.statet.rj.data.RObject;
import org.eclipse.statet.rj.data.RReference;
public interface ICombinedRDataAdapter extends IRDataAdapter {
public ICombinedRElement evalCombinedStruct(final String command,
final int options, final int depth, final RElementName name,
final IProgressMonitor monitor) throws CoreException;
public ICombinedRElement evalCombinedStruct(final String command, final RObject envir,
final int options, final int depth, final RElementName name,
final IProgressMonitor monitor) throws CoreException;
public ICombinedRElement evalCombinedStruct(final RElementName name,
final int options, final int depth,
final IProgressMonitor monitor) throws CoreException;
public ICombinedRElement evalCombinedStruct(final RReference reference,
final int options, final int depth, final RElementName name,
final IProgressMonitor monitor) throws CoreException;
}