import javafx.application.Application;
import javafx.stage.Stage;

public class Awindow0 extends Application 
{
//  public static void main(String[ ] args)				 
//  {
//      Application.launch(args);
//  }

    public void start (Stage win) throws Exception 
    {
        win.setTitle("Window with no content");          //window title
        win.show( );                                     //display the window
    }
}