blob: f694fec4c4f8bd632b39f317ce7e2a45d2560783 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.taverna.activities.spreadsheet.actions;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import org.apache.taverna.activities.spreadsheet.views.SpreadsheetImportConfigView;
import org.apache.taverna.servicedescriptions.ServiceDescriptionRegistry;
import org.apache.taverna.workbench.activityicons.ActivityIconManager;
import org.apache.taverna.workbench.edits.EditManager;
import org.apache.taverna.workbench.file.FileManager;
import org.apache.taverna.workbench.ui.actions.activity.ActivityConfigurationAction;
import org.apache.taverna.workbench.ui.views.contextualviews.activity.ActivityConfigurationDialog;
import org.apache.taverna.services.ServiceRegistry;
import org.apache.taverna.scufl2.api.activity.Activity;
/**
* The configuration action for a SpreadsheetImport activity.
*
* @author David Withers
*/
@SuppressWarnings("serial")
public class SpreadsheetImportActivityConfigurationAction extends ActivityConfigurationAction {
private static final String CONFIGURE = "Configure";
private final EditManager editManager;
private final FileManager fileManager;
private final ServiceRegistry serviceRegistry;
public SpreadsheetImportActivityConfigurationAction(Activity activity,
Frame owner, EditManager editManager, FileManager fileManager,
ActivityIconManager activityIconManager,
ServiceDescriptionRegistry serviceDescriptionRegistry, ServiceRegistry serviceRegistry) {
super(activity, activityIconManager, serviceDescriptionRegistry);
this.editManager = editManager;
this.fileManager = fileManager;
this.serviceRegistry = serviceRegistry;
putValue(NAME, CONFIGURE);
}
public void actionPerformed(ActionEvent e) {
final SpreadsheetImportConfigView spreadsheetConfigView = new SpreadsheetImportConfigView(
getActivity(), serviceRegistry);
final ActivityConfigurationDialog dialog = new ActivityConfigurationDialog(getActivity(),
spreadsheetConfigView, editManager);
ActivityConfigurationAction.setDialog(getActivity(), dialog, fileManager);
}
}