org.contextmapper.tactic.dsl.tacticdsl.ServiceDependency 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 'Service Dependency'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.ServiceDependency#getDependency Dependency}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getServiceDependency()
* @model
* @generated
*/
public interface ServiceDependency extends EObject
{
/**
* Returns the value of the 'Dependency' reference.
*
*
* @return the value of the 'Dependency' reference.
* @see #setDependency(Service)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getServiceDependency_Dependency()
* @model
* @generated
*/
Service getDependency();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.ServiceDependency#getDependency Dependency}' reference.
*
*
* @param value the new value of the 'Dependency' reference.
* @see #getDependency()
* @generated
*/
void setDependency(Service value);
} // ServiceDependency