blob: 588f921d548096212838a9c2b8aa8d5a8b61c498 [file] [log] [blame]
package org.apache.taverna.activities.externaltool.manager;
/*
* 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.
*/
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;
import org.apache.taverna.activities.externaltool.manager.InvocationGroupManager;
import org.apache.taverna.activities.externaltool.manager.InvocationMechanism;
import org.apache.taverna.activities.externaltool.manager.impl.InvocationGroupManagerImpl;
/**
* UI for creating/editing dataflow input ports.
*
* @author David Withers
*/
public class GroupPanel extends JPanel {
private static final long serialVersionUID = 1L;
private final JTextField groupNameField;
private final JComboBox mechanismComboBox;
private final InvocationGroupManager manager;
public GroupPanel(Object[] mechanisms, InvocationGroupManager manager) {
super(new GridBagLayout());
this.manager = manager;
groupNameField = new JTextField();
setBorder(new EmptyBorder(10, 10, 10, 10));
GridBagConstraints constraints = new GridBagConstraints();
constraints.anchor = GridBagConstraints.WEST;
constraints.gridx = 0;
constraints.gridy = 0;
constraints.ipadx = 10;
add(new JLabel("Name:"), constraints);
constraints.gridx = 1;
constraints.gridwidth = 2;
constraints.ipadx = 0;
constraints.weightx = 1d;
constraints.fill = GridBagConstraints.HORIZONTAL;
add(groupNameField, constraints);
constraints.gridx = 0;
constraints.gridy = 1;
constraints.gridwidth = 1;
constraints.weightx = 0d;
constraints.fill = GridBagConstraints.NONE;
constraints.ipadx = 10;
constraints.insets = new Insets(10, 0, 0, 0);
add(new JLabel("Explicit location:"), constraints);
mechanismComboBox = new JComboBox(mechanisms);
mechanismComboBox.setSelectedItem(manager.getDefaultMechanism());
constraints.gridx = 1;
constraints.gridwidth = 2;
constraints.ipadx = 0;
add(mechanismComboBox, constraints);
}
/**
* Returns the portNameField.
*
* @return the portNameField
*/
public JTextField getGroupNameField() {
return groupNameField;
}
/**
* Returns the group name.
*
* @return the group name
*/
public String getGroupName() {
return groupNameField.getText();
}
public InvocationMechanism getSelectedMechanism() {
return (InvocationMechanism) mechanismComboBox.getSelectedItem();
}
}