home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 380 b | 18 lines |
- package borland.samples.tutorial.dataset.calccolumn;
-
- public class CalcColumnApplication1 {
-
- //Construct the application
- public CalcColumnApplication1() {
- CalcColumnFrame1 frame = new CalcColumnFrame1();
- frame.pack();
- frame.setVisible(true);
- }
-
- //Main method
- static public void main(String[] args) {
- new CalcColumnApplication1();
- }
- }
-
-