blob: d148edb121f414ec4f79575e4e7da6486e0625b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 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
*******************************************************************************/
/*
* Created on Mar 9, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.eclipse.jst.j2ee.internal.web.operations;
import org.eclipse.jst.j2ee.common.CommonFactory;
import org.eclipse.jst.j2ee.common.MessageDestination;
import org.eclipse.jst.j2ee.webapplication.WebApp;
import org.eclipse.jst.j2ee.webapplication.WebapplicationPackage;
import org.eclipse.wst.common.internal.emfworkbench.integration.ModifierHelper;
import org.eclipse.wst.common.internal.emfworkbench.operation.ModelModifierOperation;
import org.eclipse.wst.common.internal.emfworkbench.operation.ModelModifierOperationDataModel;
/**
* @author jialin
*
* To change the template for this generated type comment go to Window - Preferences - Java - Code
* Generation - Code and Comments
*/
public class AddMessageDestinationOperation extends ModelModifierOperation {
/**
* @param dataModel
*/
public AddMessageDestinationOperation(ModelModifierOperationDataModel dataModel) {
super(dataModel);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.wst.common.internal.emfworkbench.operation.ModelModifierOperation#addHelpers()
*/
protected void addHelpers() {
AddMessageDestinationDataModel model = (AddMessageDestinationDataModel) this.operationDataModel;
this.modifier.addHelper(createHelper(model));
}
/**
* @param model
* @return
*/
private ModifierHelper createHelper(AddMessageDestinationDataModel model) {
ModifierHelper helper = new ModifierHelper();
WebApp webApp = (WebApp) model.getDeploymentDescriptorRoot();
helper.setOwner(webApp);
helper.setFeature(WebapplicationPackage.eINSTANCE.getWebApp_MessageDestinations());
MessageDestination msgDest = CommonFactory.eINSTANCE.createMessageDestination();
String name = model.getStringProperty(AddMessageDestinationDataModel.NAME);
msgDest.setName(name);
helper.setValue(msgDest);
return helper;
}
}