Rev 73 |
Rev 1398 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| SVN
| RSS feed
/**
* File created by Jimmy
* at 2003-dec-31 17:48:26
*/
package Macbeth.Utilities;
import javax.swing.*;
import java.awt.*;
/**
* Puts a title onto another control.
* @author Jimmy
*/
public class TitledControl
extends JPanel {
private TitleBar titleBar;
/**
* Creates a new instance of TitledControl.
* @param component The component that you want to put a title on.
* @param title The title.
*/
this.component = component;
titleBar = new TitleBar(title);
}
}