blob: 083435a3775d00bdfcc80c5670c5dce82dcfe244 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 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.wst.ws.internal.explorer.platform.uddi.actions;
import org.eclipse.wst.ws.internal.explorer.platform.actions.*;
import org.eclipse.wst.ws.internal.explorer.platform.constants.*;
import org.eclipse.wst.ws.internal.explorer.platform.perspective.*;
import org.eclipse.wst.ws.internal.explorer.platform.uddi.perspective.*;
import java.util.Hashtable;
public class UDDIImportWSDLToWorkbenchAction extends ImportToWorkbenchAction
{
public UDDIImportWSDLToWorkbenchAction(Controller controller)
{
super(controller);
}
public FormTool getSelectedFormTool()
{
UDDIPerspective uddiPerspective = controller_.getUDDIPerspective();
return (FormTool)uddiPerspective.getNavigatorManager().getSelectedNode().getCurrentToolManager().getSelectedTool();
}
public ImportToFileSystemAction newImportToFileSystemAction() {
UDDIImportWSDLToFileSystemAction action = new UDDIImportWSDLToFileSystemAction(controller_);
Hashtable table = action.getPropertyTable();
UDDIPerspective uddiPerspective = controller_.getUDDIPerspective();
NodeManager nodeManager = uddiPerspective.getNavigatorManager();
Node selectedNode = nodeManager.getSelectedNode();
table.put(ActionInputs.NODEID, String.valueOf(selectedNode.getNodeId()));
return action;
}
public final String getStatusContentVar()
{
return controller_.getUDDIPerspective().getStatusContentVar();
}
public final String getStatusContentPage()
{
return controller_.getUDDIPerspective().getStatusContentPage();
}
}