blob: 3889e87ce9f1a86cf413a37f8174ced3bc425e14 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
******************************************************************************/
package org.eclipse.emf.emfstore.internal.server.model.accesscontrol.impl;
import org.apache.commons.lang.StringUtils;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.emf.emfstore.internal.common.model.util.ModelUtil;
import org.eclipse.emf.emfstore.internal.common.model.util.SerializationException;
import org.eclipse.emf.emfstore.internal.server.model.ProjectId;
import org.eclipse.emf.emfstore.internal.server.model.accesscontrol.AccesscontrolPackage;
import org.eclipse.emf.emfstore.internal.server.model.accesscontrol.OrgUnitProperty;
/**
* <!-- begin-user-doc --> An implementation of the model object ' <em><b>Org Unit Properties</b></em>'. <!--
* end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.accesscontrol.impl.OrgUnitPropertyImpl#getName <em>Name
* </em>}</li>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.accesscontrol.impl.OrgUnitPropertyImpl#getValue <em>Value
* </em>}</li>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.accesscontrol.impl.OrgUnitPropertyImpl#getProject <em>
* Project</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class OrgUnitPropertyImpl extends EObjectImpl implements OrgUnitProperty {
/**
* The default value of the '{@link #getName() <em>Name</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getName()
* @generated
* @ordered
*/
protected static final String NAME_EDEFAULT = null;
/**
* The cached value of the '{@link #getName() <em>Name</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getName()
* @generated
* @ordered
*/
protected String name = NAME_EDEFAULT;
/**
* The default value of the '{@link #getValue() <em>Value</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getValue()
* @generated
* @ordered
*/
protected static final String VALUE_EDEFAULT = null;
/**
* The cached value of the '{@link #getValue() <em>Value</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getValue()
* @generated
* @ordered
*/
protected String value = VALUE_EDEFAULT;
/**
* The cached value of the '{@link #getProject() <em>Project</em>}' containment reference.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see #getProject()
* @generated
* @ordered
*/
protected ProjectId project;
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
protected OrgUnitPropertyImpl() {
super();
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return AccesscontrolPackage.Literals.ORG_UNIT_PROPERTY;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public String getName() {
return name;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public void setName(String newName) {
final String oldName = name;
name = newName;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AccesscontrolPackage.ORG_UNIT_PROPERTY__NAME,
oldName, name));
}
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public String getValue() {
return value;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public void setValue(String newValue) {
final String oldValue = value;
value = newValue;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AccesscontrolPackage.ORG_UNIT_PROPERTY__VALUE,
oldValue, value));
}
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public ProjectId getProject() {
if (project != null && project.eIsProxy()) {
final InternalEObject oldProject = (InternalEObject) project;
project = (ProjectId) eResolveProxy(oldProject);
if (project != oldProject) {
final InternalEObject newProject = (InternalEObject) project;
NotificationChain msgs = oldProject.eInverseRemove(this, EOPPOSITE_FEATURE_BASE
- AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT, null, null);
if (newProject.eInternalContainer() == null) {
msgs = newProject.eInverseAdd(this, EOPPOSITE_FEATURE_BASE
- AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT, null, msgs);
}
if (msgs != null) {
msgs.dispatch();
}
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT, oldProject, project));
}
}
}
return project;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public ProjectId basicGetProject() {
return project;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public NotificationChain basicSetProject(ProjectId newProject, NotificationChain msgs) {
final ProjectId oldProject = project;
project = newProject;
if (eNotificationRequired()) {
final ENotificationImpl notification = new ENotificationImpl(this, Notification.SET,
AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT, oldProject, newProject);
if (msgs == null) {
msgs = notification;
} else {
msgs.add(notification);
}
}
return msgs;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public void setProject(ProjectId newProject) {
if (newProject != project) {
NotificationChain msgs = null;
if (project != null) {
msgs = ((InternalEObject) project).eInverseRemove(this, EOPPOSITE_FEATURE_BASE
- AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT, null, msgs);
}
if (newProject != null) {
msgs = ((InternalEObject) newProject).eInverseAdd(this, EOPPOSITE_FEATURE_BASE
- AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT, null, msgs);
}
msgs = basicSetProject(newProject, msgs);
if (msgs != null) {
msgs.dispatch();
}
} else if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT,
newProject, newProject));
}
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT:
return basicSetProject(null, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case AccesscontrolPackage.ORG_UNIT_PROPERTY__NAME:
return getName();
case AccesscontrolPackage.ORG_UNIT_PROPERTY__VALUE:
return getValue();
case AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT:
if (resolve) {
return getProject();
}
return basicGetProject();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case AccesscontrolPackage.ORG_UNIT_PROPERTY__NAME:
setName((String) newValue);
return;
case AccesscontrolPackage.ORG_UNIT_PROPERTY__VALUE:
setValue((String) newValue);
return;
case AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT:
setProject((ProjectId) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case AccesscontrolPackage.ORG_UNIT_PROPERTY__NAME:
setName(NAME_EDEFAULT);
return;
case AccesscontrolPackage.ORG_UNIT_PROPERTY__VALUE:
setValue(VALUE_EDEFAULT);
return;
case AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT:
setProject((ProjectId) null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case AccesscontrolPackage.ORG_UNIT_PROPERTY__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case AccesscontrolPackage.ORG_UNIT_PROPERTY__VALUE:
return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value);
case AccesscontrolPackage.ORG_UNIT_PROPERTY__PROJECT:
return project != null;
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) {
return super.toString();
}
final StringBuffer result = new StringBuffer(super.toString());
result.append(" (name: "); //$NON-NLS-1$
result.append(name);
result.append(", value: "); //$NON-NLS-1$
result.append(value);
result.append(')');
return result.toString();
}
/**
* {@inheritDoc}
*/
public void setValue(boolean value) {
String newValue = null;
if (value) {
newValue = "true"; //$NON-NLS-1$
} else {
newValue = "false"; //$NON-NLS-1$
}
setValue(newValue);
}
/**
* {@inheritDoc}
*/
public void setValue(int value) {
setValue(new Integer(value).toString());
}
/**
* {@inheritDoc}
*/
public void setValue(String[] value) {
if (value.length == 0) {
setValue(StringUtils.EMPTY);
return;
}
final StringBuilder newValue = new StringBuilder();
for (final String s : value) {
newValue.append(s);
newValue.append(OrgUnitProperty.ARRAY_SEPARATOR);
}
final String ret = newValue.toString();
setValue(ret.substring(0, ret.length() - 2));
}
/**
* {@inheritDoc}
*/
public void setValue(EObject[] value) {
final String[] newValue = new String[value.length];
try {
for (int i = 0; i < value.length; i++) {
newValue[i] = ModelUtil.eObjectToString(value[i]);
}
setValue(newValue);
} catch (final SerializationException e) {
}
}
/**
* {@inheritDoc}
*/
public Boolean getBooleanProperty() {
final String value = getValue();
if (value != null) {
final Boolean b = new Boolean(value);
return b;
}
throw new IllegalStateException("Existing key without value!"); //$NON-NLS-1$
}
/**
* {@inheritDoc}
*/
public Integer getIntegerProperty() {
final String value = getValue();
if (value != null) {
final Integer b = new Integer(value);
return b;
}
throw new IllegalStateException("Existing key without value!"); //$NON-NLS-1$
}
/**
* {@inheritDoc}
*/
public String[] getStringArrayProperty() {
final String value = getValue();
if (value != null) {
if (value.equals(StringUtils.EMPTY)) {
return new String[0];
}
final String[] split = value.split(OrgUnitProperty.ARRAY_SEPARATOR);
return split;
}
throw new IllegalStateException("Existing key without value!"); //$NON-NLS-1$
}
} // OrgUnitPropertyImpl