blob: c1b3d06a4a693fa7f7720de03a88dd0852f93a2b [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.inputport;
import static java.awt.FlowLayout.LEFT;
import java.awt.FlowLayout;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import uk.org.taverna.scufl2.api.port.InputActivityPort;
import net.sf.taverna.t2.workbench.ui.views.contextualviews.ContextualView;
/**
* Contextual view for dataflow procerssor's input ports.
*
* @author Alex Nenadic
*/
class InputPortContextualView extends ContextualView {
private static final String NO_DETAILS_AVAILABLE_HTML = "<html><body>"
+ "<i>No details available.</i>" + "</body><html>";
private static final long serialVersionUID = -7743029534480678624L;
private InputActivityPort inputPort;
private JPanel inputPortView;
public InputPortContextualView(InputActivityPort inputport) {
this.inputPort = inputport;
initView();
}
@Override
public JComponent getMainFrame() {
refreshView();
return inputPortView;
}
@Override
public String getViewTitle() {
return "Service input port: " + inputPort.getName();
}
@Override
public void refreshView() {
inputPortView = new JPanel(new FlowLayout(LEFT));
inputPortView.setBorder(new EmptyBorder(5, 5, 5, 5));
JLabel label = new JLabel(NO_DETAILS_AVAILABLE_HTML);
inputPortView.add(label);
}
@Override
public int getPreferredPosition() {
return 100;
}
}