View Javadoc

1   /*
2    * Created on 28-Mar-2005
3    */
4   package com.webstersmalley.mediacollection;
5   
6   import org.apache.log4j.Logger;
7   import org.apache.log4j.PropertyConfigurator;
8   
9   import com.webstersmalley.mediacollection.ui.BrowserFrame;
10  
11  /**
12   */
13  public class Launcher
14  { 
15  	private static Logger log = Logger.getLogger(Launcher.class);
16  	static
17  	{
18  		PropertyConfigurator.configure("log4j.properties");
19  	}
20  	
21  	
22      public static void main(String[] args) 
23      {
24      	new BrowserFrame();
25      }
26  
27  }