blob: 202001ffd188ac526a0f2f9aa4eb384d0784884f [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2020 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 Alpha Provider</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.statet.rtm.ggplot.PropAlphaProvider#getAlpha <em>Alpha</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getPropAlphaProvider()
* @model interface="true" abstract="true"
* @generated
*/
public interface PropAlphaProvider extends EObject {
/**
* Returns the value of the '<em><b>Alpha</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Alpha</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Alpha</em>' attribute.
* @see #setAlpha(RTypedExpr)
* @see org.eclipse.statet.rtm.ggplot.GGPlotPackage#getPropAlphaProvider_Alpha()
* @model default="" dataType="org.eclipse.statet.rtm.rtdata.RAlpha"
* @generated
*/
RTypedExpr getAlpha();
/**
* Sets the value of the '{@link org.eclipse.statet.rtm.ggplot.PropAlphaProvider#getAlpha <em>Alpha</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Alpha</em>' attribute.
* @see #getAlpha()
* @generated
*/
void setAlpha(RTypedExpr value);
} // PropAlphaProvider