blob: 8d757c37390bc602ffaf32a6c6832e2ba61612c4 [file] [log] [blame]
/**
* Copyright (c) 2012, 2015 - Lunifera GmbH (Austria), Loetz GmbH&Co.KG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - initial API and implementation
*/
package org.eclipse.osbp.ecview.core.extension.model.extension;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YUi Span Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getColumnFrom <em>Column From</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getRowFrom <em>Row From</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getColumnTo <em>Column To</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getRowTo <em>Row To</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSpanInfo()
* @model
* @generated
*/
public interface YSpanInfo extends EObject {
/**
* Returns the value of the '<em><b>Column From</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The column index of the cell that should contain the Upper-Left-Edge of the element.
* <!-- end-model-doc -->
* @return the value of the '<em>Column From</em>' attribute.
* @see #setColumnFrom(int)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSpanInfo_ColumnFrom()
* @model
* @generated
*/
int getColumnFrom();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getColumnFrom <em>Column From</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Column From</em>' attribute.
* @see #getColumnFrom()
* @generated
*/
void setColumnFrom(int value);
/**
* Returns the value of the '<em><b>Row From</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The row index of the cell that should contain the Upper-Left-Edge of the element.
* <!-- end-model-doc -->
* @return the value of the '<em>Row From</em>' attribute.
* @see #setRowFrom(int)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSpanInfo_RowFrom()
* @model
* @generated
*/
int getRowFrom();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getRowFrom <em>Row From</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Row From</em>' attribute.
* @see #getRowFrom()
* @generated
*/
void setRowFrom(int value);
/**
* Returns the value of the '<em><b>Column To</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The column index of the cell that should contain the Lower-Right-Edge of the element.
* <!-- end-model-doc -->
* @return the value of the '<em>Column To</em>' attribute.
* @see #setColumnTo(int)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSpanInfo_ColumnTo()
* @model
* @generated
*/
int getColumnTo();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getColumnTo <em>Column To</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Column To</em>' attribute.
* @see #getColumnTo()
* @generated
*/
void setColumnTo(int value);
/**
* Returns the value of the '<em><b>Row To</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The row index of the cell that should contain the Lower-Right-Edge of the element.
* <!-- end-model-doc -->
* @return the value of the '<em>Row To</em>' attribute.
* @see #setRowTo(int)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYSpanInfo_RowTo()
* @model
* @generated
*/
int getRowTo();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YSpanInfo#getRowTo <em>Row To</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Row To</em>' attribute.
* @see #getRowTo()
* @generated
*/
void setRowTo(int value);
} // YUiSpanInfo