// Copyright 1996, Marimba Inc. All Rights Reserved.


// @(#)StaticTextWidget.java, 1.1, 10/28/96





package marimba.gui;





import java.awt.*;





/**


 * A single line of static text.


 *


 * @author	Arthur van Hoff


 * @version 	1.1, 10/28/96


 */


public class StaticTextWidget extends TextBoxWidget {


    /**


     * Default constructor.


     */


    public StaticTextWidget() {


	this("Static Text");


    }





    /**


     * Constructor with value.


     */


    public StaticTextWidget(String text) {


	setEditable(false);


	setStyle(PLAIN);


	setValue(text);


    }


}


