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