blob: 1f08aa9f038b8be7f08ce5b2bec1f5af78a72cc4 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2007 The University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
******************************************************************************/
package net.sf.taverna.t2.activities.beanshell.views;
import java.awt.Frame;
import javax.swing.Action;
import net.sf.taverna.t2.activities.beanshell.actions.BeanshellActivityConfigurationAction;
import net.sf.taverna.t2.servicedescriptions.ServiceDescriptionRegistry;
import net.sf.taverna.t2.workbench.activityicons.ActivityIconManager;
import net.sf.taverna.t2.workbench.configuration.colour.ColourManager;
import net.sf.taverna.t2.workbench.edits.EditManager;
import net.sf.taverna.t2.workbench.file.FileManager;
import net.sf.taverna.t2.workbench.ui.actions.activity.HTMLBasedActivityContextualView;
import uk.org.taverna.configuration.app.ApplicationConfiguration;
import org.apache.taverna.scufl2.api.activity.Activity;
import org.apache.taverna.scufl2.api.port.InputActivityPort;
import org.apache.taverna.scufl2.api.port.OutputActivityPort;
/**
* A simple non editable HTML table view over a {@link BeanshellActivity}.
* Clicking on the configure button shows the editable {@link BeanshellConfigView}
*
* @author Ian Dunlop
* @author Stuart Owen
* @author David Withers
*/
@SuppressWarnings("serial")
public class BeanshellContextualView extends HTMLBasedActivityContextualView {
private EditManager editManager;
private FileManager fileManager;
private final ActivityIconManager activityIconManager;
private final ServiceDescriptionRegistry serviceDescriptionRegistry;
private final ApplicationConfiguration applicationConfiguration;
public BeanshellContextualView(Activity activity, EditManager editManager,
FileManager fileManager, ActivityIconManager activityIconManager,
ColourManager colourManager, ServiceDescriptionRegistry serviceDescriptionRegistry,
ApplicationConfiguration applicationConfiguration) {
super(activity, colourManager);
this.editManager = editManager;
this.fileManager = fileManager;
this.activityIconManager = activityIconManager;
this.serviceDescriptionRegistry = serviceDescriptionRegistry;
this.applicationConfiguration = applicationConfiguration;
init();
}
private void init() {
}
@Override
protected String getRawTableRowsHtml() {
StringBuilder html = new StringBuilder();
html.append("<tr><th>Input Port Name</th><th>Depth</th></tr>");
for (InputActivityPort inputActivityPort : getActivity().getInputPorts()) {
html.append("<tr><td>" + inputActivityPort.getName() + "</td><td>");
html.append(inputActivityPort.getDepth() + "</td></tr>");
}
html.append("<tr><th>Output Port Name</th><th>Depth</th></tr>");
for (OutputActivityPort outputActivityPort : getActivity().getOutputPorts()) {
html.append("<tr><td>" + outputActivityPort.getName() + "</td><td>");
html.append(outputActivityPort.getDepth() + "</td></tr>");
}
return html.toString();
}
@Override
public String getViewTitle() {
return "Beanshell service";
}
@Override
public Action getConfigureAction(Frame owner) {
return new BeanshellActivityConfigurationAction(getActivity(), owner, editManager,
fileManager, activityIconManager, serviceDescriptionRegistry, applicationConfiguration);
}
@Override
public int getPreferredPosition() {
return 100;
}
}