blob: 0ec017ad93098d631c38e8504ef7c681394bbd75 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.commands;
import org.eclipse.bpel.model.messageproperties.PropertyAlias;
/**
* Command to set the Part property of a PropertyAlias.
*/
public class SetPropertyAliasPartCommand extends SetCommand {
// TODO: label?
public SetPropertyAliasPartCommand(PropertyAlias target, String newPartName) {
super(target, newPartName);
}
@Override
public Object get() {
return ((PropertyAlias)fTarget).getPart();
}
@Override
public void set(Object o) {
((PropertyAlias)fTarget).setPart((String)o);
}
}