blob: 596407cbfe7445af1abbb3f975934f4f8dc0e979 [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.reference.ui;
import static java.awt.GridBagConstraints.HORIZONTAL;
import static java.awt.GridBagConstraints.VERTICAL;
import static java.awt.GridBagConstraints.WEST;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;
/**
* UI for editing url's.
*
* @author David Withers
*/
@SuppressWarnings("serial")
public class UrlPanel extends JPanel {
private JTextField urlField;
public UrlPanel() {
super(new GridBagLayout());
urlField = new JTextField();
setBorder(new EmptyBorder(10, 10, 10, 10));
GridBagConstraints constraints = new GridBagConstraints();
constraints.anchor = 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 = HORIZONTAL;
add(urlField, constraints);
constraints.gridx = 0;
constraints.gridy = 1;
constraints.fill = VERTICAL;
constraints.weighty = 1d;
add(new JPanel(), constraints);
}
/**
* Returns the urlField.
*
* @return the urlField
*/
public JTextField getUrlField() {
return urlField;
}
/**
* Returns the url.
*
* @return the url
*/
public String getUrl() {
return urlField.getText();
}
/**
* Sets the url.
*
* @param url
* the url
*/
public void setUrl(String url) {
urlField.setText(url);
}
}