Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Bégaudeau2015-11-20 13:09:11 +0000
committerStéphane Bégaudeau2015-11-20 13:48:56 +0000
commit04f3f4568da96ac7ff89c75428abfb39dfe66f26 (patch)
tree7e85a9741b03c3ae4cc894cf1a41aa21e1289910 /plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFTableDescription.java
parent1f11ccc494779a9b17e61acaaf1f9cdc734b1acf (diff)
downloadorg.eclipse.eef-04f3f4568da96ac7ff89c75428abfb39dfe66f26.tar.gz
org.eclipse.eef-04f3f4568da96ac7ff89c75428abfb39dfe66f26.tar.xz
org.eclipse.eef-04f3f4568da96ac7ff89c75428abfb39dfe66f26.zip
Contribute the first version of the build for EEF NG
1) A build has been contributed for all the org.eclipse.eef.* projects 2) All the plugins that will not be used now have been moved to the prototypes directory. Change-Id: I4477be42b519df975a426fb8016ea5b5276cc729 Signed-off-by: Stéphane Bégaudeau <stephane.begaudeau@obeo.fr>
Diffstat (limited to 'plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFTableDescription.java')
-rw-r--r--plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFTableDescription.java109
1 files changed, 0 insertions, 109 deletions
diff --git a/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFTableDescription.java b/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFTableDescription.java
deleted file mode 100644
index 2799b2254..000000000
--- a/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFTableDescription.java
+++ /dev/null
@@ -1,109 +0,0 @@
-/**
- * Copyright (c) 2015 Obeo.
- * 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.htm
- * Contributors: Obeo - initial API and implementation
- */
-package org.eclipse.eef;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>EEF Table Description</b></em>'.
- * <!-- end-user-doc -->
- *
- * <!-- begin-model-doc -->
- * Represents a Table in the user interface.
- * <!-- end-model-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link org.eclipse.eef.EEFTableDescription#getValueExpression <em>Value Expression</em>}</li>
- * <li>{@link org.eclipse.eef.EEFTableDescription#getEditExpression <em>Edit Expression</em>}</li>
- * <li>{@link org.eclipse.eef.EEFTableDescription#getTableStructure <em>Table Structure</em>}</li>
- * </ul>
- *
- * @see org.eclipse.eef.EefPackage#getEEFTableDescription()
- * @model
- * @generated
- */
-public interface EEFTableDescription extends EEFWidgetDescription {
- /**
- * Returns the value of the '<em><b>Value Expression</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * <!-- begin-model-doc -->
- * Indicates how to display the input values.
- * <!-- end-model-doc -->
- * @return the value of the '<em>Value Expression</em>' attribute.
- * @see #setValueExpression(String)
- * @see org.eclipse.eef.EefPackage#getEEFTableDescription_ValueExpression()
- * @model dataType="org.eclipse.sirius.expression.Expression"
- * @generated
- */
- String getValueExpression();
-
- /**
- * Sets the value of the '{@link org.eclipse.eef.EEFTableDescription#getValueExpression <em>Value Expression</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Value Expression</em>' attribute.
- * @see #getValueExpression()
- * @generated
- */
- void setValueExpression(String value);
-
- /**
- * Returns the value of the '<em><b>Edit Expression</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * <!-- begin-model-doc -->
- * Defines the behavior executed when the end-user updates the table cell elements.
- * <!-- end-model-doc -->
- * @return the value of the '<em>Edit Expression</em>' attribute.
- * @see #setEditExpression(String)
- * @see org.eclipse.eef.EefPackage#getEEFTableDescription_EditExpression()
- * @model dataType="org.eclipse.sirius.expression.Expression"
- * @generated
- */
- String getEditExpression();
-
- /**
- * Sets the value of the '{@link org.eclipse.eef.EEFTableDescription#getEditExpression <em>Edit Expression</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Edit Expression</em>' attribute.
- * @see #getEditExpression()
- * @generated
- */
- void setEditExpression(String value);
-
- /**
- * Returns the value of the '<em><b>Table Structure</b></em>' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * <!-- begin-model-doc -->
- * References a table structure.
- * <!-- end-model-doc -->
- * @return the value of the '<em>Table Structure</em>' reference.
- * @see #setTableStructure(EEFTableStructureDescription)
- * @see org.eclipse.eef.EefPackage#getEEFTableDescription_TableStructure()
- * @model
- * @generated
- */
- EEFTableStructureDescription getTableStructure();
-
- /**
- * Sets the value of the '{@link org.eclipse.eef.EEFTableDescription#getTableStructure <em>Table Structure</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Table Structure</em>' reference.
- * @see #getTableStructure()
- * @generated
- */
- void setTableStructure(EEFTableStructureDescription value);
-
-} // EEFTableDescription

Back to the top