blob: 96184ce34e9d4897938b60859461134465f6e1d3 [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.ecore.EObject;
import org.eclipse.statet.rtm.rtdata.types.RTypedExpr;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Prop XVar Provider</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.statet.rtm.ggplot.PropXVarProvider#getXVar <em>XVar</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getPropXVarProvider()
* @model interface="true" abstract="true"
* @generated
*/
public interface PropXVarProvider extends EObject {
/**
* Returns the value of the '<em><b>XVar</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>XVar</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>XVar</em>' attribute.
* @see #setXVar(RTypedExpr)
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getPropXVarProvider_XVar()
* @model dataType="org.eclipse.statet.rtm.rtdata.RVar"
* @generated
*/
RTypedExpr getXVar();
/**
* Sets the value of the '{@link org.eclipse.statet.rtm.ggplot.PropXVarProvider#getXVar <em>XVar</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>XVar</em>' attribute.
* @see #getXVar()
* @generated
*/
void setXVar(RTypedExpr value);
} // PropXVarProvider