Код: Выделить всё
import javax.swing.*;
public class Test extends JFrame {
public Test() {
super();
this.setSize(200,200);
this.setVisible(true);
}
public static void main(Sting[] arg) {
Test cFrame = new Test();
}
}
Подробнее здесь: https://stackoverflow.com/questions/276 ... or-in-java