blob: d638404a5691e02540cfde8c4b6212f6299b307d [file] [log] [blame]
/**
*/
package org.eclipse.gendoc.table;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Row</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.gendoc.table.Row#getObject <em>Object</em>}</li>
* <li>{@link org.eclipse.gendoc.table.Row#getCells <em>Cells</em>}</li>
* </ul>
*
* @see org.eclipse.gendoc.table.TablePackage#getRow()
* @model
* @generated
*/
public interface Row extends EObject {
/**
* Returns the value of the '<em><b>Object</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Object</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Object</em>' attribute.
* @see #setObject(Object)
* @see org.eclipse.gendoc.table.TablePackage#getRow_Object()
* @model
* @generated
*/
Object getObject();
/**
* Sets the value of the '{@link org.eclipse.gendoc.table.Row#getObject <em>Object</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Object</em>' attribute.
* @see #getObject()
* @generated
*/
void setObject(Object value);
/**
* Returns the value of the '<em><b>Cells</b></em>' reference list.
* The list contents are of type {@link org.eclipse.gendoc.table.Cell}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Cells</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Cells</em>' reference list.
* @see org.eclipse.gendoc.table.TablePackage#getRow_Cells()
* @model
* @generated
*/
EList<Cell> getCells();
} // Row