Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.query.ocl.metamodel/src/org/eclipse/papyrus/emf/facet/query/ocl/metamodel/oclquery/OclQuery.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.query.ocl.metamodel/src/org/eclipse/papyrus/emf/facet/query/ocl/metamodel/oclquery/OclQuery.java30
1 files changed, 18 insertions, 12 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.query.ocl.metamodel/src/org/eclipse/papyrus/emf/facet/query/ocl/metamodel/oclquery/OclQuery.java b/plugins/facet/org.eclipse.papyrus.emf.facet.query.ocl.metamodel/src/org/eclipse/papyrus/emf/facet/query/ocl/metamodel/oclquery/OclQuery.java
index 1424c76ed17..8ef8aaaeff1 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.query.ocl.metamodel/src/org/eclipse/papyrus/emf/facet/query/ocl/metamodel/oclquery/OclQuery.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.query.ocl.metamodel/src/org/eclipse/papyrus/emf/facet/query/ocl/metamodel/oclquery/OclQuery.java
@@ -1,15 +1,15 @@
/**
* Copyright (c) 2012 Mia-Software.
- *
+ *
* 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
- *
+ *
* Contributors:
* Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
- *
- *
+ *
+ *
*/
package org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery;
@@ -25,8 +25,8 @@ import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Q
* <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery#getContext <em>Context</em>}</li>
- * <li>{@link org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery#getOclExpression <em>Ocl Expression</em>}</li>
+ * <li>{@link org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery#getContext <em>Context</em>}</li>
+ * <li>{@link org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery#getOclExpression <em>Ocl Expression</em>}</li>
* </ul>
* </p>
*
@@ -39,10 +39,10 @@ public interface OclQuery extends Query {
* Returns the value of the '<em><b>Context</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Context</em>' reference isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Context</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Context</em>' reference.
* @see #setContext(EClassifier)
* @see org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQueryPackage#getOclQuery_Context()
@@ -55,7 +55,9 @@ public interface OclQuery extends Query {
* Sets the value of the '{@link org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery#getContext <em>Context</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Context</em>' reference.
+ *
+ * @param value
+ * the new value of the '<em>Context</em>' reference.
* @see #getContext()
* @generated
*/
@@ -65,10 +67,10 @@ public interface OclQuery extends Query {
* Returns the value of the '<em><b>Ocl Expression</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Ocl Expression</em>' attribute isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Ocl Expression</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Ocl Expression</em>' attribute.
* @see #setOclExpression(String)
* @see org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQueryPackage#getOclQuery_OclExpression()
@@ -81,7 +83,9 @@ public interface OclQuery extends Query {
* Sets the value of the '{@link org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery#getOclExpression <em>Ocl Expression</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Ocl Expression</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Ocl Expression</em>' attribute.
* @see #getOclExpression()
* @generated
*/
@@ -90,9 +94,11 @@ public interface OclQuery extends Query {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @model annotation="http://www.eclipse.org/emf/2002/GenModel body='return getOclExpression();'"
* @generated
*/
+ @Override
String toString();
} // OclQuery

Back to the top