java-scuola/7.x/P7.17 Cloud/CloudViewer.java

20 lines
557 B
Java

import javax.swing.JFrame;
/**
* Classe che visualizza una nuvola tramite un JFrame e CloudComponent
* @author radaelli11353
*/
public class CloudViewer {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(500, 500);
frame.setTitle("Visualizzatore nuvola");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
CloudComponent component = new CloudComponent();
frame.add(component);
frame.setVisible(true);
}
}