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

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

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id: Column.java 10224 2013-01-04 15:48:48Z dschwarz $
 */
package org.openxma.dsl.dom.model;

import org.eclipse.emf.common.util.EList;
import org.openxma.dsl.core.model.DataTypeAndTypeParameter;
import org.openxma.dsl.core.model.Type;

/**
 * 
 * A representation of the model object 'Column'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.Column#getColumnName Column Name}
  • *
  • {@link org.openxma.dsl.dom.model.Column#getUserType User Type}
  • *
  • {@link org.openxma.dsl.dom.model.Column#getColumnType Column Type}
  • *
  • {@link org.openxma.dsl.dom.model.Column#getColumns Columns}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getColumn() * @model * @generated */ public interface Column 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#getColumn_ColumnName() * @model * @generated */ String getColumnName(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.Column#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 'User Type' containment reference. * *

* If the meaning of the 'User Type' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'User Type' containment reference. * @see #setUserType(DataTypeAndTypeParameter) * @see org.openxma.dsl.dom.DomPackage#getColumn_UserType() * @model containment="true" * @generated */ DataTypeAndTypeParameter getUserType(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.Column#getUserType User Type}' containment reference. * * * @param value the new value of the 'User Type' containment reference. * @see #getUserType() * @generated */ void setUserType(DataTypeAndTypeParameter value); /** * Returns the value of the 'Column Type' reference. * *

* If the meaning of the 'Column Type' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Column Type' reference. * @see #setColumnType(Type) * @see org.openxma.dsl.dom.DomPackage#getColumn_ColumnType() * @model * @generated */ Type getColumnType(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.Column#getColumnType Column Type}' reference. * * * @param value the new value of the 'Column Type' reference. * @see #getColumnType() * @generated */ void setColumnType(Type 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#getColumn_Columns() * @model containment="true" * @generated */ EList getColumns(); /** * @generated NOT */ public Column getColumnDefinition(Attribute attribute); } // Column




© 2015 - 2024 Weber Informatics LLC | Privacy Policy