org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod 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 'Association Method'.
*
*
*
* The following features are supported:
*
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod#getMain Main}
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod#getPart Part}
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod#getRolename Rolename}
*
*
*
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getAssociationMethod()
* @model
* @generated
*/
public interface AssociationMethod extends ServiceMethod {
/**
* Returns the value of the 'Main' reference.
*
*
* If the meaning of the 'Main' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Main' reference.
* @see #setMain(DtoReference)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getAssociationMethod_Main()
* @model
* @generated
*/
DtoReference getMain();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod#getMain Main}' reference.
*
*
* @param value the new value of the 'Main' reference.
* @see #getMain()
* @generated
*/
void setMain(DtoReference value);
/**
* Returns the value of the 'Part' reference.
*
*
* If the meaning of the 'Part' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Part' reference.
* @see #setPart(DtoReference)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getAssociationMethod_Part()
* @model
* @generated
*/
DtoReference getPart();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod#getPart Part}' reference.
*
*
* @param value the new value of the 'Part' reference.
* @see #getPart()
* @generated
*/
void setPart(DtoReference value);
/**
* Returns the value of the 'Rolename' attribute.
*
*
* If the meaning of the 'Rolename' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Rolename' attribute.
* @see #setRolename(String)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getAssociationMethod_Rolename()
* @model
* @generated
*/
String getRolename();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.AssociationMethod#getRolename Rolename}' attribute.
*
*
* @param value the new value of the 'Rolename' attribute.
* @see #getRolename()
* @generated
*/
void setRolename(String value);
} // AssociationMethod