Материал из Викиучебника
/************************************************************
** Title: Блокнот
** Class: Note
** Author: Oleg Imanilov
** Copyright (c) 2007 Oleg Imanilov.
** Permission is granted to copy, distribute and/or
** modify this document under the terms of the
** GNU Free Documentation License
** Notes: Главный класс программы Блокнот
************************************************************/
public class Note {
public static void main(String[] args) {
NoteFrame mainFrame = new NoteFrame();
mainFrame.setBounds(200,100,400,300);
mainFrame.setVisible(true);
}
}