package voi.ui;
import java.awt.*;
import javax.swing.*;

/** 
This class is used to create a custom made label for the 2qz system which accetps name and Font 
**/ 
public class TdfLabel extends JLabel
{
	public TdfLabel ()
	{
		super ();
	}
	
	public TdfLabel (String name)
	{
		super (name);
	}
	
	public TdfLabel (String name, Font f)
	{
		setText (name);
		setFont (f);
	}
}
