blob: 06b1ed91c821f62188fe724e19adfc2f2a1bd349 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 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.rtm.ggplot;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.statet.rtm.rtdata.types.RTypedExpr;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Facet Config</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.statet.rtm.ggplot.FacetConfig#getRowVars <em>Row Vars</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getFacetConfig()
* @model interface="true" abstract="true"
* @generated
*/
public interface FacetConfig extends EObject {
/**
* Returns the value of the '<em><b>Row Vars</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.statet.rtm.rtdata.types.RTypedExpr}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Row Vars</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Row Vars</em>' attribute list.
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getFacetConfig_RowVars()
* @model dataType="org.eclipse.statet.rtm.rtdata.RVar"
* @generated
*/
EList<RTypedExpr> getRowVars();
} // FacetConfig