All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.dsl.dom.model.OneToMany Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id: OneToMany.java 10224 2013-01-04 15:48:48Z dschwarz $
 */
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy