org.nasdanika.models.excel.Cell Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.excel;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Cell'.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.excel.Cell#getColumnIndex Column Index}
*
*
* @see org.nasdanika.models.excel.ExcelPackage#getCell()
* @model
* @generated
*/
public interface Cell extends EObject {
/**
* Returns the value of the 'Column Index' attribute.
*
*
* @return the value of the 'Column Index' attribute.
* @see #setColumnIndex(int)
* @see org.nasdanika.models.excel.ExcelPackage#getCell_ColumnIndex()
* @model
* @generated
*/
int getColumnIndex();
/**
* Sets the value of the '{@link org.nasdanika.models.excel.Cell#getColumnIndex Column Index}' attribute.
*
*
* @param value the new value of the 'Column Index' attribute.
* @see #getColumnIndex()
* @generated
*/
void setColumnIndex(int value);
} // Cell