mudah mudahan bermanfaat berikut source kodenya:
import javax.swing.*;
//Class frame
class grap21 extends JFrame
{
grap21()
{
super("Universitas Budi Luhur");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocation(10,100);
this.setSize(250,200);
show();
}
public static void main(String args[])
{
new grap21();
}