/** */ package rba.sound; import rba.core.Allocatable; import rba.core.Expression; import rba.core.ExpressionType; /** * * A representation of the model object 'Zone'. * * * * * * *

* The following features are supported: *

* * * @see rba.sound.RBASoundPackage#getZone() * @model * @generated */ public interface Zone extends Allocatable { /** * Returns the value of the 'Attenuate' containment reference. * * * * * * @return the value of the 'Attenuate' containment reference. * @see #setAttenuate(Expression) * @see rba.sound.RBASoundPackage#getZone_Attenuate() * @model containment="true" * @generated */ Expression getAttenuate(); /** * Sets the value of the '{@link rba.sound.Zone#getAttenuate Attenuate}' containment reference. * * * @param value the new value of the 'Attenuate' containment reference. * @see #getAttenuate() * @generated */ void setAttenuate(Expression value); /** * * * * @Override * * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/GenModel body='return ExpressionType.ZONE;'" * @generated */ ExpressionType getExpressionType(); } // Zone