import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;

/**
This class is used to create a button for the 2df system which accepts name, tooltip and edge as parameters and returns a button
**/
public class TdfButton extends JButton
{
	public TdfButton ()
	{
		super();
	}
	
	public TdfButton (String name, String toolTip, Border edge)
	{
		setText (name);
		setToolTipText (toolTip);
		setBorder (edge);
	}
}
