Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/VAT.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/VAT.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/VAT.java b/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/VAT.java
index 217fe8a5ca..69abdbd99c 100644
--- a/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/VAT.java
+++ b/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/VAT.java
@@ -115,6 +115,8 @@ public enum VAT implements Enumerator
* Returns the '<em><b>VAT</b></em>' literal with the specified literal value.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
+ * @param literal the literal.
+ * @return the matching enumerator or <code>null</code>.
* @generated
*/
public static VAT get(String literal)
@@ -133,6 +135,8 @@ public enum VAT implements Enumerator
/**
* Returns the '<em><b>VAT</b></em>' literal with the specified name.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ * @param name the name.
+ * @return the matching enumerator or <code>null</code>.
* @generated
*/
public static VAT getByName(String name)
@@ -152,6 +156,8 @@ public enum VAT implements Enumerator
* Returns the '<em><b>VAT</b></em>' literal with the specified integer value.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
+ * @param value the integer value.
+ * @return the matching enumerator or <code>null</code>.
* @generated
*/
public static VAT get(int value)

Back to the top