Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.modisco.jee.webapp/src-gen/org/eclipse/modisco/jee/webapp/webapp22/RoleNameType.java')
-rw-r--r--org.eclipse.modisco.jee.webapp/src-gen/org/eclipse/modisco/jee/webapp/webapp22/RoleNameType.java80
1 files changed, 80 insertions, 0 deletions
diff --git a/org.eclipse.modisco.jee.webapp/src-gen/org/eclipse/modisco/jee/webapp/webapp22/RoleNameType.java b/org.eclipse.modisco.jee.webapp/src-gen/org/eclipse/modisco/jee/webapp/webapp22/RoleNameType.java
new file mode 100644
index 000000000..c021db5bf
--- /dev/null
+++ b/org.eclipse.modisco.jee.webapp/src-gen/org/eclipse/modisco/jee/webapp/webapp22/RoleNameType.java
@@ -0,0 +1,80 @@
+/**
+ * Copyright (c) 2010 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:
+ *
+ * Nicolas Guyomar (Mia-Software) - initial API and implementation
+ */
+package org.eclipse.modisco.jee.webapp.webapp22;
+
+import org.eclipse.emf.ecore.EObject;
+
+import org.eclipse.emf.ecore.util.FeatureMap;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Role Name Type</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.modisco.jee.webapp.webapp22.RoleNameType#getMixed <em>Mixed</em>}</li>
+ * <li>{@link org.eclipse.modisco.jee.webapp.webapp22.RoleNameType#getId <em>Id</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.modisco.jee.webapp.webapp22.Webapp22Package#getRoleNameType()
+ * @model extendedMetaData="name='role-name_._type' kind='mixed'"
+ * @generated
+ */
+public interface RoleNameType extends EObject {
+ /**
+ * Returns the value of the '<em><b>Mixed</b></em>' attribute list.
+ * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Mixed</em>' attribute list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Mixed</em>' attribute list.
+ * @see org.eclipse.modisco.jee.webapp.webapp22.Webapp22Package#getRoleNameType_Mixed()
+ * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
+ * extendedMetaData="kind='elementWildcard' name=':mixed'"
+ * @generated
+ */
+ FeatureMap getMixed();
+
+ /**
+ * Returns the value of the '<em><b>Id</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Id</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Id</em>' attribute.
+ * @see #setId(String)
+ * @see org.eclipse.modisco.jee.webapp.webapp22.Webapp22Package#getRoleNameType_Id()
+ * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID"
+ * extendedMetaData="kind='attribute' name='id' namespace='##targetNamespace'"
+ * @generated
+ */
+ String getId();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.modisco.jee.webapp.webapp22.RoleNameType#getId <em>Id</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Id</em>' attribute.
+ * @see #getId()
+ * @generated
+ */
+ void setId(String value);
+
+} // RoleNameType

Back to the top