blob: e9c4059d46ff83978fa82bcd7f0495794fd5d09a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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
*******************************************************************************/
package org.eclipse.jst.ws.internal.consumption.command.common;
import org.eclipse.jst.ws.internal.consumption.datamodel.validate.ValidationManager;
import org.eclipse.wst.command.internal.provisional.env.core.SimpleCommand;
import org.eclipse.wst.command.internal.provisional.env.core.common.Environment;
import org.eclipse.wst.command.internal.provisional.env.core.common.MessageUtils;
import org.eclipse.wst.command.internal.provisional.env.core.common.SimpleStatus;
import org.eclipse.wst.command.internal.provisional.env.core.common.Status;
import org.eclipse.wst.ws.internal.datamodel.Model;
public class DisableBuildCommand extends SimpleCommand
{
private MessageUtils msgUtils_;
private Model model_;
private ValidationManager manager_;
private String LABEL = "TASK_LABEL_WEBSERVICE_DISABLE_BUILD";
private String DESCRIPTION = "TASK_DESC_WEBSERVICE_DISABLE_BUILD";
/**
* CTOR;
*/
public DisableBuildCommand()
{
String pluginId = "org.eclipse.jst.ws.consumption";
msgUtils_ = new MessageUtils(pluginId + ".plugin", this);
setName(msgUtils_.getMessage(LABEL));
setDescription(msgUtils_.getMessage(DESCRIPTION));
}
/**
* Execute the command
*/
public Status execute(Environment env) {
Status status = new SimpleStatus("");
env.getProgressMonitor().report(msgUtils_.getMessage("TASK_DESC_WEBSERVICE_DISABLE_BUILD"));
if (manager_!=null) {
manager_.disableAutoBuild();
}
return status;
}
/**
* Set the model
*
* @param model
*/
public void setModel(Model model) {
this.model_ = model;
}
/**
* @param manager_ The manager_ to set.
*/
public void setValidationManager(ValidationManager manager) {
this.manager_ = manager;
}
}