Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.samples/src/main/impl/BaseGroupImpl.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.samples/src/main/impl/BaseGroupImpl.java92
1 files changed, 47 insertions, 45 deletions
diff --git a/tests/org.eclipse.emf.teneo.samples/src/main/impl/BaseGroupImpl.java b/tests/org.eclipse.emf.teneo.samples/src/main/impl/BaseGroupImpl.java
index 2405b46d5..abea72e7b 100755
--- a/tests/org.eclipse.emf.teneo.samples/src/main/impl/BaseGroupImpl.java
+++ b/tests/org.eclipse.emf.teneo.samples/src/main/impl/BaseGroupImpl.java
@@ -23,23 +23,22 @@ import org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList;
import org.eclipse.emf.ecore.util.InternalEList;
/**
- * <!-- begin-user-doc -->
- * An implementation of the model object '<em><b>Base Group</b></em>'.
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> An implementation of the model object '<em><b>Base Group</b></em>'. <!--
+ * end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
- * <li>{@link main.impl.BaseGroupImpl#getComponents <em>Components</em>}</li>
+ * <li>{@link main.impl.BaseGroupImpl#getComponents <em>Components</em>}</li>
* </ul>
* </p>
- *
+ *
* @generated
*/
public class BaseGroupImpl extends BaseComponentImpl implements BaseGroup {
/**
- * The cached value of the '{@link #getComponents() <em>Components</em>}' containment reference list.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * The cached value of the '{@link #getComponents() <em>Components</em>}' containment reference
+ * list. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @see #getComponents()
* @generated
* @ordered
@@ -47,8 +46,8 @@ public class BaseGroupImpl extends BaseComponentImpl implements BaseGroup {
protected EList components = null;
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
protected BaseGroupImpl() {
@@ -56,8 +55,8 @@ public class BaseGroupImpl extends BaseComponentImpl implements BaseGroup {
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
protected EClass eStaticClass() {
@@ -65,96 +64,99 @@ public class BaseGroupImpl extends BaseComponentImpl implements BaseGroup {
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public EList getComponents() {
if (components == null) {
- components = new EObjectContainmentWithInverseEList(BaseComponent.class, this, MainPackage.BASE_GROUP__COMPONENTS, MainPackage.BASE_COMPONENT__GROUP);
+ components = new EObjectContainmentWithInverseEList(BaseComponent.class, this,
+ MainPackage.BASE_GROUP__COMPONENTS, MainPackage.BASE_COMPONENT__GROUP);
}
return components;
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
- public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
+ public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID,
+ NotificationChain msgs) {
switch (featureID) {
- case MainPackage.BASE_GROUP__COMPONENTS:
- return ((InternalEList)getComponents()).basicAdd(otherEnd, msgs);
+ case MainPackage.BASE_GROUP__COMPONENTS:
+ return ((InternalEList) getComponents()).basicAdd(otherEnd, msgs);
}
return super.eInverseAdd(otherEnd, featureID, msgs);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
- public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
+ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID,
+ NotificationChain msgs) {
switch (featureID) {
- case MainPackage.BASE_GROUP__COMPONENTS:
- return ((InternalEList)getComponents()).basicRemove(otherEnd, msgs);
+ case MainPackage.BASE_GROUP__COMPONENTS:
+ return ((InternalEList) getComponents()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case MainPackage.BASE_GROUP__COMPONENTS:
- return getComponents();
+ case MainPackage.BASE_GROUP__COMPONENTS:
+ return getComponents();
}
return super.eGet(featureID, resolve, coreType);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case MainPackage.BASE_GROUP__COMPONENTS:
- getComponents().clear();
- getComponents().addAll((Collection)newValue);
- return;
+ case MainPackage.BASE_GROUP__COMPONENTS:
+ getComponents().clear();
+ getComponents().addAll((Collection) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public void eUnset(int featureID) {
switch (featureID) {
- case MainPackage.BASE_GROUP__COMPONENTS:
- getComponents().clear();
- return;
+ case MainPackage.BASE_GROUP__COMPONENTS:
+ getComponents().clear();
+ return;
}
super.eUnset(featureID);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public boolean eIsSet(int featureID) {
switch (featureID) {
- case MainPackage.BASE_GROUP__COMPONENTS:
- return components != null && !components.isEmpty();
+ case MainPackage.BASE_GROUP__COMPONENTS:
+ return components != null && !components.isEmpty();
}
return super.eIsSet(featureID);
}
-} //BaseGroupImpl \ No newline at end of file
+} // BaseGroupImpl \ No newline at end of file

Back to the top