blob: 4caccb9500f34e143fef17a0cab0e3361c8ea7b1 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 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.statet.rtm.rtdata.types.RTypedExpr;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Wrap Facet Layout</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.statet.rtm.ggplot.WrapFacetLayout#getColVars <em>Col Vars</em>}</li>
* <li>{@link org.eclipse.statet.rtm.ggplot.WrapFacetLayout#getColNum <em>Col Num</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getWrapFacetLayout()
* @model
* @generated
*/
public interface WrapFacetLayout extends FacetLayout {
/**
* Returns the value of the '<em><b>Col 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>Col 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>Col Vars</em>' attribute list.
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getWrapFacetLayout_ColVars()
* @model dataType="org.eclipse.statet.rtm.rtdata.RVar"
* @generated
*/
EList<RTypedExpr> getColVars();
/**
* Returns the value of the '<em><b>Col Num</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Col Num</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Col Num</em>' attribute.
* @see #setColNum(RTypedExpr)
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getWrapFacetLayout_ColNum()
* @model dataType="org.eclipse.statet.rtm.rtdata.RInt"
* @generated
*/
RTypedExpr getColNum();
/**
* Sets the value of the '{@link org.eclipse.statet.rtm.ggplot.WrapFacetLayout#getColNum <em>Col Num</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Col Num</em>' attribute.
* @see #getColNum()
* @generated
*/
void setColNum(RTypedExpr value);
} // WrapFacetLayout