org.contextmapper.tactic.dsl.tacticdsl.Consumer Maven / Gradle / Ivy
/**
* generated by Xtext 2.20.0
*/
package org.contextmapper.tactic.dsl.tacticdsl;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Consumer'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getDoc Doc}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getName Name}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getHint Hint}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getDependencies Dependencies}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getMessageRoot Message Root}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getChannel Channel}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getSubscribe Subscribe}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer()
* @model
* @generated
*/
public interface Consumer extends EObject
{
/**
* Returns the value of the 'Doc' attribute.
*
*
* If the meaning of the 'Doc' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Doc' attribute.
* @see #setDoc(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_Doc()
* @model
* @generated
*/
String getDoc();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getDoc Doc}' attribute.
*
*
* @param value the new value of the 'Doc' attribute.
* @see #getDoc()
* @generated
*/
void setDoc(String value);
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Hint' attribute.
*
*
* If the meaning of the 'Hint' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Hint' attribute.
* @see #setHint(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_Hint()
* @model
* @generated
*/
String getHint();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getHint Hint}' attribute.
*
*
* @param value the new value of the 'Hint' attribute.
* @see #getHint()
* @generated
*/
void setHint(String value);
/**
* Returns the value of the 'Dependencies' containment reference list.
* The list contents are of type {@link org.contextmapper.tactic.dsl.tacticdsl.Dependency}.
*
*
* If the meaning of the 'Dependencies' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Dependencies' containment reference list.
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_Dependencies()
* @model containment="true"
* @generated
*/
EList getDependencies();
/**
* Returns the value of the 'Message Root' reference.
*
*
* If the meaning of the 'Message Root' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Message Root' reference.
* @see #setMessageRoot(DomainObject)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_MessageRoot()
* @model
* @generated
*/
DomainObject getMessageRoot();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getMessageRoot Message Root}' reference.
*
*
* @param value the new value of the 'Message Root' reference.
* @see #getMessageRoot()
* @generated
*/
void setMessageRoot(DomainObject value);
/**
* Returns the value of the 'Channel' attribute.
*
*
* If the meaning of the 'Channel' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Channel' attribute.
* @see #setChannel(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_Channel()
* @model
* @generated
*/
String getChannel();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getChannel Channel}' attribute.
*
*
* @param value the new value of the 'Channel' attribute.
* @see #getChannel()
* @generated
*/
void setChannel(String value);
/**
* Returns the value of the 'Subscribe' containment reference.
*
*
* If the meaning of the 'Subscribe' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Subscribe' containment reference.
* @see #setSubscribe(Subscribe)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getConsumer_Subscribe()
* @model containment="true"
* @generated
*/
Subscribe getSubscribe();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Consumer#getSubscribe Subscribe}' containment reference.
*
*
* @param value the new value of the 'Subscribe' containment reference.
* @see #getSubscribe()
* @generated
*/
void setSubscribe(Subscribe value);
} // Consumer