/******************************************************************************* * Copyright (c) 2012 BMW Car IT 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 *******************************************************************************/ package org.jnario; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtext.common.types.JvmTypeReference; import org.eclipse.xtend.core.xtend.XtendField; import org.eclipse.xtext.xbase.XExpression; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Example Column</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.jnario.ExampleColumn#getTable <em>Table</em>}</li> * <li>{@link org.jnario.ExampleColumn#getCells <em>Cells</em>}</li> * <li>{@link org.jnario.ExampleColumn#getName <em>Name</em>}</li> * <li>{@link org.jnario.ExampleColumn#getType <em>Type</em>}</li> * </ul> * </p> * * @see org.jnario.JnarioPackage#getExampleColumn() * @model * @generated */ public interface ExampleColumn extends EObject { /** * Returns the value of the '<em><b>Table</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.jnario.ExampleTable#getColumns <em>Columns</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Table</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Table</em>' container reference. * @see #setTable(ExampleTable) * @see org.jnario.JnarioPackage#getExampleColumn_Table() * @see org.jnario.ExampleTable#getColumns * @model opposite="columns" transient="false" * @generated */ ExampleTable getTable(); /** * Sets the value of the '{@link org.jnario.ExampleColumn#getTable <em>Table</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Table</em>' container reference. * @see #getTable() * @generated */ void setTable(ExampleTable value); /** * Returns the value of the '<em><b>Cells</b></em>' reference list. * The list contents are of type {@link org.jnario.ExampleCell}. * <!-- 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.jnario.JnarioPackage#getExampleColumn_Cells() * @model transient="true" volatile="true" derived="true" * @generated */ EList<ExampleCell> getCells(); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.jnario.JnarioPackage#getExampleColumn_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.jnario.ExampleColumn#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' containment reference. * @see #setType(JvmTypeReference) * @see org.jnario.JnarioPackage#getExampleColumn_Type() * @model containment="true" * @generated */ JvmTypeReference getType(); /** * Sets the value of the '{@link org.jnario.ExampleColumn#getType <em>Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(JvmTypeReference value); } // ExampleColumn