org.contextmapper.tactic.dsl.tacticdsl.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of context-mapper-dsl Show documentation
Show all versions of context-mapper-dsl Show documentation
Use the ContextMapper DSL in your standalone application.
/**
* generated by Xtext 2.21.0
*/
package org.contextmapper.tactic.dsl.tacticdsl;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Service'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Service#getComment Comment}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Service#isWebService Web Service}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Service#getOperations Operations}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getService()
* @model
* @generated
*/
public interface Service extends ServiceRepositoryOption
{
/**
* Returns the value of the 'Comment' attribute.
*
*
* @return the value of the 'Comment' attribute.
* @see #setComment(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getService_Comment()
* @model
* @generated
*/
String getComment();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Service#getComment Comment}' attribute.
*
*
* @param value the new value of the 'Comment' attribute.
* @see #getComment()
* @generated
*/
void setComment(String value);
/**
* Returns the value of the 'Web Service' attribute.
*
*
* @return the value of the 'Web Service' attribute.
* @see #setWebService(boolean)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getService_WebService()
* @model
* @generated
*/
boolean isWebService();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Service#isWebService Web Service}' attribute.
*
*
* @param value the new value of the 'Web Service' attribute.
* @see #isWebService()
* @generated
*/
void setWebService(boolean value);
/**
* Returns the value of the 'Operations' containment reference list.
* The list contents are of type {@link org.contextmapper.tactic.dsl.tacticdsl.ServiceOperation}.
*
*
* @return the value of the 'Operations' containment reference list.
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getService_Operations()
* @model containment="true"
* @generated
*/
EList getOperations();
} // Service