org.mod4j.dsl.service.mm.ServiceDsl.CrudService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mod4j-service-mm Show documentation
Show all versions of mod4j-service-mm Show documentation
This Eclipse plug-in project contains the ServiceDsl meta model.
/**
*
*
*
* $Id$
*/
package org.mod4j.dsl.service.mm.ServiceDsl;
/**
*
* A representation of the model object 'Crud Service'.
*
*
*
* The following features are supported:
*
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.CrudService#getDto Dto}
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.CrudService#getModel Model}
*
*
*
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getCrudService()
* @model
* @generated
*/
public interface CrudService extends ModelElement {
/**
* Returns the value of the 'Dto' reference.
*
*
* If the meaning of the 'Dto' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Dto' reference.
* @see #setDto(DtoReference)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getCrudService_Dto()
* @model
* @generated
*/
DtoReference getDto();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.CrudService#getDto Dto}' reference.
*
*
* @param value the new value of the 'Dto' reference.
* @see #getDto()
* @generated
*/
void setDto(DtoReference value);
/**
* Returns the value of the 'Model' container reference.
* It is bidirectional and its opposite is '{@link org.mod4j.dsl.service.mm.ServiceDsl.ServiceModel#getCrudServices Crud Services}'.
*
*
* If the meaning of the 'Model' container reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Model' container reference.
* @see #setModel(ServiceModel)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getCrudService_Model()
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceModel#getCrudServices
* @model opposite="crudServices" transient="false"
* @generated
*/
ServiceModel getModel();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.CrudService#getModel Model}' container reference.
*
*
* @param value the new value of the 'Model' container reference.
* @see #getModel()
* @generated
*/
void setModel(ServiceModel value);
} // CrudService