Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/FeatureTag.java')
-rw-r--r--plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/FeatureTag.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/FeatureTag.java b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/FeatureTag.java
index 9b771216..3617923b 100644
--- a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/FeatureTag.java
+++ b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/FeatureTag.java
@@ -208,6 +208,8 @@ public enum FeatureTag implements Enumerator {
* @param literal the literal value
* @return the '<em><b>Feature Tag</b></em>' literal with the specified literal value.
* <!-- end-user-doc -->
+ * @param literal the literal.
+ * @return the matching enumerator or <code>null</code>.
* @generated
*/
public static FeatureTag get(String literal) {
@@ -226,6 +228,8 @@ public enum FeatureTag implements Enumerator {
* @param name the literal name
* @return the '<em><b>Feature Tag</b></em>' literal with the specified name.
* <!-- end-user-doc -->
+ * @param name the name.
+ * @return the matching enumerator or <code>null</code>.
* @generated
*/
public static FeatureTag getByName(String name) {
@@ -244,6 +248,8 @@ public enum FeatureTag implements Enumerator {
* @param value the literal integer value
* @return the '<em><b>Feature Tag</b></em>' literal with the specified integer value.
* <!-- end-user-doc -->
+ * @param value the integer value.
+ * @return the matching enumerator or <code>null</code>.
* @generated
*/
public static FeatureTag get(int value) {

Back to the top