org.openxma.dsl.dom.model.ManyToMany Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Many To Many'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.ManyToMany#getTableName Table Name}
* - {@link org.openxma.dsl.dom.model.ManyToMany#getColumnName Column Name}
* - {@link org.openxma.dsl.dom.model.ManyToMany#isInverse Inverse}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getManyToMany()
* @model
* @generated
*/
public interface ManyToMany extends DaoFeature {
/**
* Returns the value of the 'Table Name' attribute.
*
*
* If the meaning of the 'Table Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Table Name' attribute.
* @see #setTableName(String)
* @see org.openxma.dsl.dom.DomPackage#getManyToMany_TableName()
* @model
* @generated
*/
String getTableName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.ManyToMany#getTableName Table Name}' attribute.
*
*
* @param value the new value of the 'Table Name' attribute.
* @see #getTableName()
* @generated
*/
void setTableName(String value);
/**
* 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#getManyToMany_ColumnName()
* @model
* @generated
*/
String getColumnName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.ManyToMany#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 'Inverse' attribute.
*
*
* If the meaning of the 'Inverse' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Inverse' attribute.
* @see #setInverse(boolean)
* @see org.openxma.dsl.dom.DomPackage#getManyToMany_Inverse()
* @model
* @generated
*/
boolean isInverse();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.ManyToMany#isInverse Inverse}' attribute.
*
*
* @param value the new value of the 'Inverse' attribute.
* @see #isInverse()
* @generated
*/
void setInverse(boolean value);
} // ManyToMany