Biblioteca Java - Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 mihai 1 /*
2  * MainApp.java
3  */
4 package lab.scd.net.browser;
5  
6 import javax.swing.JFrame;
7  
8 /**
9  * Class created by @author Mihai HULEA at Feb 25, 2005.
10  *
11  * This class is part of the laborator2_net project.
12  *
13  */
14 public class MainApp extends JFrame{
15  
16     public MainApp(){
17                 Browser b = new Browser();
18                 getContentPane().add(b);
19                 pack();
20                 setVisible(true);
21                 }
22  
23     public static void main(String args[])
24         {
25         //eliminati comentariile in cazul in care folosti un proxy
26         /*
27         props.put("http.proxyHost","193.226.5.55");
28         props.put("http.proxyPort","3128");
29         */
30         MainApp s = new MainApp();
31         }
32  
33 }