Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'hibernate/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/impl/CascadeImpl.java')
-rwxr-xr-xhibernate/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/impl/CascadeImpl.java80
1 files changed, 41 insertions, 39 deletions
diff --git a/hibernate/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/impl/CascadeImpl.java b/hibernate/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/impl/CascadeImpl.java
index ea740b3de..57b70e572 100755
--- a/hibernate/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/impl/CascadeImpl.java
+++ b/hibernate/org.eclipse.emf.teneo.hibernate.mapper/src/org/eclipse/emf/teneo/hibernate/hbannotation/impl/CascadeImpl.java
@@ -16,23 +16,23 @@ import org.eclipse.emf.teneo.hibernate.hbannotation.HbCascadeType;
import org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage;
/**
- * <!-- begin-user-doc -->
- * An implementation of the model object '<em><b>Cascade</b></em>'.
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> An implementation of the model object ' <em><b>Cascade</b></em>'. <!--
+ * end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
- * <li>{@link org.eclipse.emf.teneo.hibernate.hbannotation.impl.CascadeImpl#getValue <em>Value</em>}</li>
+ * <li>
+ * {@link org.eclipse.emf.teneo.hibernate.hbannotation.impl.CascadeImpl#getValue <em>Value</em>}</li>
* </ul>
* </p>
- *
+ *
* @generated
*/
public class CascadeImpl extends HbAnnotationImpl implements Cascade {
/**
- * The cached value of the '{@link #getValue() <em>Value</em>}' attribute list.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * The cached value of the '{@link #getValue() <em>Value</em>}' attribute list. <!--
+ * begin-user-doc --> <!-- end-user-doc -->
+ *
* @see #getValue()
* @generated
* @ordered
@@ -40,8 +40,8 @@ public class CascadeImpl extends HbAnnotationImpl implements Cascade {
protected EList<HbCascadeType> value;
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
protected CascadeImpl() {
@@ -49,8 +49,8 @@ public class CascadeImpl extends HbAnnotationImpl implements Cascade {
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -59,85 +59,87 @@ public class CascadeImpl extends HbAnnotationImpl implements Cascade {
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public EList<HbCascadeType> getValue() {
if (value == null) {
- value = new EDataTypeUniqueEList<HbCascadeType>(HbCascadeType.class, this, HbannotationPackage.CASCADE__VALUE);
+ value = new EDataTypeUniqueEList<HbCascadeType>(HbCascadeType.class, this,
+ HbannotationPackage.CASCADE__VALUE);
}
return value;
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case HbannotationPackage.CASCADE__VALUE:
- return getValue();
+ case HbannotationPackage.CASCADE__VALUE:
+ return getValue();
}
return super.eGet(featureID, resolve, coreType);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@SuppressWarnings("unchecked")
- @Override
+ @Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case HbannotationPackage.CASCADE__VALUE:
- getValue().clear();
- getValue().addAll((Collection<? extends HbCascadeType>)newValue);
- return;
+ case HbannotationPackage.CASCADE__VALUE:
+ getValue().clear();
+ getValue().addAll((Collection<? extends HbCascadeType>) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case HbannotationPackage.CASCADE__VALUE:
- getValue().clear();
- return;
+ case HbannotationPackage.CASCADE__VALUE:
+ getValue().clear();
+ return;
}
super.eUnset(featureID);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case HbannotationPackage.CASCADE__VALUE:
- return value != null && !value.isEmpty();
+ case HbannotationPackage.CASCADE__VALUE:
+ return value != null && !value.isEmpty();
}
return super.eIsSet(featureID);
}
/**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public String toString() {
- if (eIsProxy()) return super.toString();
+ if (eIsProxy())
+ return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (value: ");
@@ -146,4 +148,4 @@ public class CascadeImpl extends HbAnnotationImpl implements Cascade {
return result.toString();
}
-} //CascadeImpl \ No newline at end of file
+} // CascadeImpl \ No newline at end of file

Back to the top