blob: 8642118944565965bbdff6b216c7ed4673b25ca4 [file] [log] [blame]
/**
*/
package org.eclipse.gendoc.table;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Cell</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.gendoc.table.Cell#getObject <em>Object</em>}</li>
* <li>{@link org.eclipse.gendoc.table.Cell#getLabel <em>Label</em>}</li>
* </ul>
*
* @see org.eclipse.gendoc.table.TablePackage#getCell()
* @model
* @generated
*/
public interface Cell 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#getCell_Object()
* @model
* @generated
*/
Object getObject();
/**
* Sets the value of the '{@link org.eclipse.gendoc.table.Cell#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>Label</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Label</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Label</em>' attribute.
* @see #setLabel(String)
* @see org.eclipse.gendoc.table.TablePackage#getCell_Label()
* @model default=""
* @generated
*/
String getLabel();
/**
* Sets the value of the '{@link org.eclipse.gendoc.table.Cell#getLabel <em>Label</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Label</em>' attribute.
* @see #getLabel()
* @generated
*/
void setLabel(String value);
} // Cell