From be4f78978faba3d3ceb88df02a7f93a2e09ff1e0 Mon Sep 17 00:00:00 2001 From: Kenji Hosokawa Date: Tue, 3 Aug 2021 18:42:39 +0900 Subject: Initial commit Bug-AGL: SPEC-4033 Signed-off-by: Kenji Hosokawa --- rba.model.sound/src/rba/sound/IsOutputted.java | 46 ++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 rba.model.sound/src/rba/sound/IsOutputted.java (limited to 'rba.model.sound/src/rba/sound/IsOutputted.java') diff --git a/rba.model.sound/src/rba/sound/IsOutputted.java b/rba.model.sound/src/rba/sound/IsOutputted.java new file mode 100644 index 0000000..9b1d89d --- /dev/null +++ b/rba.model.sound/src/rba/sound/IsOutputted.java @@ -0,0 +1,46 @@ +/** + */ +package rba.sound; + +import rba.core.ExpressionType; + +/** + * + * A representation of the model object 'Is Outputted'. + * + * + * + * + * + * + * + * @see rba.sound.RBASoundPackage#getIsOutputted() + * @model + * @generated + */ +public interface IsOutputted extends ZoneOperator { + /** + * + * + * + * @Override + * + * @model kind="operation" + * annotation="http://www.eclipse.org/emf/2002/GenModel body='return \".isOutputted()\";'" + * @generated + */ + String getSymbol(); + + /** + * + * + * + * @Override + * + * @model kind="operation" + * annotation="http://www.eclipse.org/emf/2002/GenModel body='return ExpressionType.BOOLEAN;'" + * @generated + */ + ExpressionType getUnderlyingType(); + +} // IsOutputted -- cgit 1.2.3-korg