org.openxma.dsl.dom.model.DaoOperation Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.ecore.EObject;
import org.openxma.dsl.core.model.Type;
/**
*
* A representation of the model object 'Dao Operation'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.DaoOperation#getType Type}
* - {@link org.openxma.dsl.dom.model.DaoOperation#isMany Many}
* - {@link org.openxma.dsl.dom.model.DaoOperation#getName Name}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getDaoOperation()
* @model
* @generated
*/
public interface DaoOperation extends EObject {
/**
* 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(Type)
* @see org.openxma.dsl.dom.DomPackage#getDaoOperation_Type()
* @model
* @generated
*/
Type getType();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.DaoOperation#getType Type}' reference.
*
*
* @param value the new value of the 'Type' reference.
* @see #getType()
* @generated
*/
void setType(Type value);
/**
* Returns the value of the 'Many' attribute.
*
*
* If the meaning of the 'Many' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Many' attribute.
* @see #setMany(boolean)
* @see org.openxma.dsl.dom.DomPackage#getDaoOperation_Many()
* @model
* @generated
*/
boolean isMany();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.DaoOperation#isMany Many}' attribute.
*
*
* @param value the new value of the 'Many' attribute.
* @see #isMany()
* @generated
*/
void setMany(boolean value);
/**
* 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.openxma.dsl.dom.DomPackage#getDaoOperation_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.DaoOperation#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // DaoOperation