blob: 2f88171e780902eb6182c929b7535c287eda6517 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.e4.ui.internal.workbench;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.e4.ui.workbench.modeling.ModelDelta;
import org.eclipse.emf.common.util.EMap;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
public class EMFDeltaEntrySet extends ModelDelta {
protected EStructuralFeature feature;
protected String key;
protected String value;
public EMFDeltaEntrySet(EObject object, EStructuralFeature feature, String key, String value) {
super(object, feature.getName(), null);
this.feature = feature;
this.key = key;
this.value = value;
}
public IStatus apply() {
EMap map = (EMap) ((EObject) getObject()).eGet(feature);
map.put(key, value);
return Status.OK_STATUS;
}
}