- /**
- * <p>Title:Student Grade System</p>
- * <p>Discrition:</p>
- * <p>Copyright: li168feng@yahoo.com.cn Copyright (c) 2003.1.3</p>
- * <p>Company:</p>
- *@autor lifeng
- *@version 1.0
- */
- import java.awt.*;
- import javax.swing.*;
- public class GradeSystem
- {
- public static void main(String[] args)
- {
- GradeSystemFrame frame = new GradeSystemFrame();
- frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- frame.show();
- }
- }