org.openxma.dsl.dom.model.OneToMany Maven / Gradle / Ivy
/**
*
*
*
* $Id: OneToMany.java 9011 2012-01-13 14:48:10Z mjohannes $
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'One To Many'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.OneToMany#getColumnName Column Name}
* - {@link org.openxma.dsl.dom.model.OneToMany#getColumns Columns}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getOneToMany()
* @model
* @generated
*/
public interface OneToMany extends DaoFeature {
/**
* Returns the value of the 'Column Name' attribute.
*
*
* If the meaning of the 'Column Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Column Name' attribute.
* @see #setColumnName(String)
* @see org.openxma.dsl.dom.DomPackage#getOneToMany_ColumnName()
* @model
* @generated
*/
String getColumnName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.OneToMany#getColumnName Column Name}' attribute.
*
*
* @param value the new value of the 'Column Name' attribute.
* @see #getColumnName()
* @generated
*/
void setColumnName(String value);
/**
* Returns the value of the 'Columns' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Column}.
*
*
* If the meaning of the 'Columns' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Columns' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getOneToMany_Columns()
* @model containment="true"
* @generated
*/
EList getColumns();
} // OneToMany