// Main entry point.
	public static void Main(String[] args)
	{
		Application app = new Application("XClockEmbed", args);
		XClockEmbed topLevel = new XClockEmbed("Embedded Clock", 200, 200);
		topLevel.Map();
		app.Run();
		app.Close();
	}
Esempio n. 2
0
    // Main entry point.
    public static void Main(String[] args)
    {
        Application app      = new Application("XClockEmbed", args);
        XClockEmbed topLevel = new XClockEmbed("Embedded Clock", 200, 200);

        topLevel.Map();
        app.Run();
        app.Close();
    }