package com.robert;
import javax.swing.*;
import java.awt.*;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 11-11-12
* Time: 下午7:14
* To change this template use File | Settings | File Templates.
*/
public class ListTest {
public static void main(String args[])
{
EventQueue.invokeLater(new Runnable() {
public void run() {
JFrame frame = new ListFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
});
}
}
package com.robert;
import javax.swing.*;