org.mod4j.dsl.service.mm.ServiceDsl.Parameter 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 'Parameter'.
*
*
*
* The following features are supported:
*
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.Parameter#getType Type}
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.Parameter#getMethod Method}
*
*
*
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getParameter()
* @model
* @generated
*/
public interface Parameter extends ModelElement {
/**
* Returns the value of the 'Type' reference.
*
*
* If the meaning of the 'Type' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' reference.
* @see #setType(DtoReference)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getParameter_Type()
* @model
* @generated
*/
DtoReference getType();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.Parameter#getType Type}' reference.
*
*
* @param value the new value of the 'Type' reference.
* @see #getType()
* @generated
*/
void setType(DtoReference value);
/**
* Returns the value of the 'Method' container reference.
* It is bidirectional and its opposite is '{@link org.mod4j.dsl.service.mm.ServiceDsl.CustomMethod#getInParameters In Parameters}'.
*
*
* If the meaning of the 'Method' container reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Method' container reference.
* @see #setMethod(CustomMethod)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getParameter_Method()
* @see org.mod4j.dsl.service.mm.ServiceDsl.CustomMethod#getInParameters
* @model opposite="inParameters" transient="false"
* @generated
*/
CustomMethod getMethod();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.Parameter#getMethod Method}' container reference.
*
*
* @param value the new value of the 'Method' container reference.
* @see #getMethod()
* @generated
*/
void setMethod(CustomMethod value);
} // Parameter