
org.jnario.ExampleColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jnario.standalone Show documentation
Show all versions of org.jnario.standalone Show documentation
The required libraries to execute Jnario specifications without Eclipse.
The newest version!
/*******************************************************************************
* 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;
/**
*
* A representation of the model object 'Example Column'.
*
*
*
* The following features are supported:
*
* - {@link org.jnario.ExampleColumn#getTable Table}
* - {@link org.jnario.ExampleColumn#getCells Cells}
* - {@link org.jnario.ExampleColumn#getName Name}
* - {@link org.jnario.ExampleColumn#getType Type}
*
*
*
* @see org.jnario.JnarioPackage#getExampleColumn()
* @model
* @generated
*/
public interface ExampleColumn extends EObject {
/**
* Returns the value of the 'Table' container reference.
* It is bidirectional and its opposite is '{@link org.jnario.ExampleTable#getColumns Columns}'.
*
*
* If the meaning of the 'Table' container reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Table' 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 Table}' container reference.
*
*
* @param value the new value of the 'Table' container reference.
* @see #getTable()
* @generated
*/
void setTable(ExampleTable value);
/**
* Returns the value of the 'Cells' reference list.
* The list contents are of type {@link org.jnario.ExampleCell}.
*
*
* If the meaning of the 'Cells' reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Cells' reference list.
* @see org.jnario.JnarioPackage#getExampleColumn_Cells()
* @model transient="true" volatile="true" derived="true"
* @generated
*/
EList getCells();
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.jnario.JnarioPackage#getExampleColumn_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.jnario.ExampleColumn#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Type' containment reference.
*
*
* If the meaning of the 'Type' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' 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 Type}' containment reference.
*
*
* @param value the new value of the 'Type' containment reference.
* @see #getType()
* @generated
*/
void setType(JvmTypeReference value);
} // ExampleColumn
© 2015 - 2025 Weber Informatics LLC | Privacy Policy