Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFLabelDescription.java')
-rw-r--r--plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFLabelDescription.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFLabelDescription.java b/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFLabelDescription.java
index 90b2b6037..6fe8ed518 100644
--- a/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFLabelDescription.java
+++ b/plugins/org.eclipse.eef/src-gen/org/eclipse/eef/EEFLabelDescription.java
@@ -20,8 +20,10 @@ import org.eclipse.emf.common.util.EList;
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.eef.EEFLabelDescription#getValueExpression <em>Value Expression</em>}</li>
+ * <li>{@link org.eclipse.eef.EEFLabelDescription#getDisplayExpression <em>Display Expression</em>}</li>
* <li>{@link org.eclipse.eef.EEFLabelDescription#getStyle <em>Style</em>}</li>
* <li>{@link org.eclipse.eef.EEFLabelDescription#getConditionalStyles <em>Conditional Styles</em>}</li>
+ * <li>{@link org.eclipse.eef.EEFLabelDescription#getActions <em>Actions</em>}</li>
* </ul>
* </p>
*
@@ -54,6 +56,29 @@ public interface EEFLabelDescription extends EEFWidgetDescription {
void setValueExpression(String value);
/**
+ * Returns the value of the '<em><b>Display Expression</b></em>' attribute. <!-- begin-user-doc --> <!--
+ * end-user-doc --> <!-- begin-model-doc --> This function will return the label to display <!-- end-model-doc -->
+ *
+ * @return the value of the '<em>Display Expression</em>' attribute.
+ * @see #setDisplayExpression(String)
+ * @see org.eclipse.eef.EefPackage#getEEFLabelDescription_DisplayExpression()
+ * @model
+ * @generated
+ */
+ String getDisplayExpression();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.eef.EEFLabelDescription#getDisplayExpression
+ * <em>Display Expression</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Display Expression</em>' attribute.
+ * @see #getDisplayExpression()
+ * @generated
+ */
+ void setDisplayExpression(String value);
+
+ /**
* Returns the value of the '<em><b>Style</b></em>' containment reference. <!-- begin-user-doc --> <!-- end-user-doc
* --> <!-- begin-model-doc --> Defines the label style <!-- end-model-doc -->
*
@@ -88,4 +113,20 @@ public interface EEFLabelDescription extends EEFWidgetDescription {
*/
EList<EEFLabelConditionalStyle> getConditionalStyles();
+ /**
+ * Returns the value of the '<em><b>Actions</b></em>' containment reference list. The list contents are of type
+ * {@link org.eclipse.eef.EEFWidgetAction}. <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Actions</em>' containment reference list isn't clear, there really should be more of a
+ * description here...
+ * </p>
+ * <!-- end-user-doc -->
+ *
+ * @return the value of the '<em>Actions</em>' containment reference list.
+ * @see org.eclipse.eef.EefPackage#getEEFLabelDescription_Actions()
+ * @model containment="true" resolveProxies="true"
+ * @generated
+ */
+ EList<EEFWidgetAction> getActions();
+
} // EEFLabelDescription

Back to the top