/* AboutJMLL.java
 * Simple test of JMultiLineLabel
 *
 *  (C) Copyright 1998
 *  Wildcrest Associates
 *  http://www.wildcrest.com
 *  
 * This source code may be freely used, modified, incorporated, and
 * distributed without restriction as part of any software that uses
 * JMultiLineLabel by Wildcrest Associates.
 */

import javax.swing.*;
import java.awt.*;

import com.wildcrest.jmultilinelabel.JMultiLineLabel;

public class AboutJMLL extends JApplet
{
	public void init()
	{
		getContentPane().setLayout(null);
		setSize(276,228);
		jMultiLineLabel1 = new com.wildcrest.jmultilinelabel.JMultiLineLabel();
		jMultiLineLabel1.setText("About JMultiLineLabel...\n");
		jMultiLineLabel1.setLayout(null);
		jMultiLineLabel1.setBounds(12,12,252,22);
		jMultiLineLabel1.setFont(new Font("SansSerif", Font.BOLD, 18));
		jMultiLineLabel1.setForeground(new Color(-10066279));
		jMultiLineLabel1.setBackground(new Color(-3355444));
		getContentPane().add(jMultiLineLabel1);
		jMultiLineLabel2 = new com.wildcrest.jmultilinelabel.JMultiLineLabel();
		jMultiLineLabel2.setText("JMultiLineLabel is a Swing (JFC) component for displaying multiple line text labels.  It has the following features:\n\n	line spacing	line wrap\n	tab expansion	insets\n	font selection	height autosizing\n	line breaks	property editor\n	accessibility	pluggable look-and-feel\n");
		jMultiLineLabel2.setLayout(null);
		jMultiLineLabel2.setBounds(12,48,252,144);
		jMultiLineLabel2.setFont(new Font("Serif", Font.PLAIN, 12));
		jMultiLineLabel2.setForeground(new Color(0));
		jMultiLineLabel2.setBackground(new Color(-3355444));
		getContentPane().add(jMultiLineLabel2);
		getContentPane().setBackground(Color.white);
	}

	com.wildcrest.jmultilinelabel.JMultiLineLabel jMultiLineLabel1;
	com.wildcrest.jmultilinelabel.JMultiLineLabel jMultiLineLabel2;
}
