org.mod4j.dsl.service.mm.ServiceDsl.CustomMethod 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;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Custom Method'.
*
*
*
* The following features are supported:
*
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.CustomMethod#getOutput Output}
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.CustomMethod#getInParameters In Parameters}
*
*
*
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getCustomMethod()
* @model
* @generated
*/
public interface CustomMethod extends ServiceMethod {
/**
* Returns the value of the 'Output' reference.
*
*
* If the meaning of the 'Output' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Output' reference.
* @see #setOutput(DtoReference)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getCustomMethod_Output()
* @model
* @generated
*/
DtoReference getOutput();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.CustomMethod#getOutput Output}' reference.
*
*
* @param value the new value of the 'Output' reference.
* @see #getOutput()
* @generated
*/
void setOutput(DtoReference value);
/**
* Returns the value of the 'In Parameters' containment reference list.
* The list contents are of type {@link org.mod4j.dsl.service.mm.ServiceDsl.Parameter}.
* It is bidirectional and its opposite is '{@link org.mod4j.dsl.service.mm.ServiceDsl.Parameter#getMethod Method}'.
*
*
* If the meaning of the 'In Parameters' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'In Parameters' containment reference list.
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getCustomMethod_InParameters()
* @see org.mod4j.dsl.service.mm.ServiceDsl.Parameter#getMethod
* @model opposite="method" containment="true"
* @generated
*/
EList getInParameters();
} // CustomMethod