org.contextmapper.tactic.dsl.tacticdsl.Publish Maven / Gradle / Ivy
/**
* generated by Xtext 2.21.0
*/
package org.contextmapper.tactic.dsl.tacticdsl;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Publish'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Publish#getEventType Event Type}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Publish#getTopic Topic}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Publish#getEventBus Event Bus}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getPublish()
* @model
* @generated
*/
public interface Publish extends EObject
{
/**
* Returns the value of the 'Event Type' reference.
*
*
* @return the value of the 'Event Type' reference.
* @see #setEventType(Event)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getPublish_EventType()
* @model
* @generated
*/
Event getEventType();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Publish#getEventType Event Type}' reference.
*
*
* @param value the new value of the 'Event Type' reference.
* @see #getEventType()
* @generated
*/
void setEventType(Event value);
/**
* Returns the value of the 'Topic' attribute.
*
*
* @return the value of the 'Topic' attribute.
* @see #setTopic(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getPublish_Topic()
* @model
* @generated
*/
String getTopic();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Publish#getTopic Topic}' attribute.
*
*
* @param value the new value of the 'Topic' attribute.
* @see #getTopic()
* @generated
*/
void setTopic(String value);
/**
* Returns the value of the 'Event Bus' attribute.
*
*
* @return the value of the 'Event Bus' attribute.
* @see #setEventBus(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getPublish_EventBus()
* @model
* @generated
*/
String getEventBus();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Publish#getEventBus Event Bus}' attribute.
*
*
* @param value the new value of the 'Event Bus' attribute.
* @see #getEventBus()
* @generated
*/
void setEventBus(String value);
} // Publish