Go to most recent revision |
Blame |
Last modification |
View Log
| SVN
| RSS feed
/**
* File created by Jimmy
* at 2003-dec-31 17:44:01
*/
package Macbeth.Utilities;
import javax.swing.*;
import java.awt.*;
/**
* A title bar.
* @author Jimmy
*/
public class TitleBar
extends JPanel {
public TitleBar
(String title
) {
setBackground
(UIManager.
getColor("InternalFrame.activeTitleBackground"));
setOpaque(true);
titleLabel =
new JLabel(title
);
}
public void setTitle
(String title
) {
titleLabel.setText(title);
}
}