org.mod4j.dsl.service.mm.ServiceDsl.ModelElement 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.ecore.EObject;
/**
*
* A representation of the model object 'Model Element'.
*
*
*
* The following features are supported:
*
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.ModelElement#getName Name}
* - {@link org.mod4j.dsl.service.mm.ServiceDsl.ModelElement#getDescription Description}
*
*
*
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getModelElement()
* @model
* @generated
*/
public interface ModelElement extends EObject {
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getModelElement_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.ModelElement#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Description' attribute.
*
*
* If the meaning of the 'Description' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Description' attribute.
* @see #setDescription(String)
* @see org.mod4j.dsl.service.mm.ServiceDsl.ServiceDslPackage#getModelElement_Description()
* @model
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.mod4j.dsl.service.mm.ServiceDsl.ModelElement#getDescription Description}' attribute.
*
*
* @param value the new value of the 'Description' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
} // ModelElement