/* The main class that creates the main frame, which is responsible
 * for handling all the events.
 */

import java.awt.*;

public class Beautify extends java.applet.Applet
{
	public static UI UI_Frame = new UI("Beautify");

	// flag for allowing the program to be run as an applet
	public static boolean isApplet;
	
	public static void main(String[] args)
	{
		isApplet = false;
		UI_Frame.UIinit();
	}
	
	public void init()
	{
		isApplet = true;
		UI_Frame.UIinit();
	}
	
}


