blob: 3f17a651db2228b90f3ff6dc512c6acc0720d0c9 [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.workbench.ui.views.contextualviews.dataflowinputport;
import static java.awt.FlowLayout.LEFT;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import uk.org.taverna.scufl2.api.port.InputWorkflowPort;
import net.sf.taverna.t2.workbench.file.FileManager;
import net.sf.taverna.t2.workbench.ui.views.contextualviews.ContextualView;
/**
* Contextual view for dataflow's input ports.
*
* @author Alex Nenadic
*/
class DataflowInputPortContextualView extends ContextualView{
private static final long serialVersionUID = -8746856072335775933L;
private InputWorkflowPort dataflowInputPort;
private JPanel dataflowInputPortView;
@SuppressWarnings("unused")
private FileManager fileManager;
public DataflowInputPortContextualView(InputWorkflowPort inputport,
FileManager fileManager) {
this.dataflowInputPort = inputport;
this.fileManager = fileManager;
initView();
}
@Override
public JComponent getMainFrame() {
refreshView();
return dataflowInputPortView;
}
@Override
public String getViewTitle() {
return "Workflow input port: " + dataflowInputPort.getName();
}
@Override
public void refreshView() {
dataflowInputPortView = new JPanel(new FlowLayout(LEFT));
dataflowInputPortView.setBorder(new EmptyBorder(5, 5, 5, 5));
JLabel label = new JLabel(getTextFromDepth("port",
dataflowInputPort.getDepth()));
dataflowInputPortView.add(label);
}
@SuppressWarnings("serial")
@Override
public Action getConfigureAction(Frame owner) {
return new AbstractAction("Update prediction") {
@Override
public void actionPerformed(ActionEvent e) {
// fileManager.getCurrentDataflow().checkValidity();
refreshView();
}
};
}
@Override
public int getPreferredPosition() {
return 100;
}
}