View Javadoc

1   package net.sourceforge.pmd.util.viewer;
2   
3   import net.sourceforge.pmd.util.viewer.gui.MainFrame;
4   
5   /***
6    * viewer's starter
7    *
8    * @author Boris Gruschko ( boris at gruschko.org )
9    * @version $Id: Viewer.java,v 1.5 2005/08/23 17:17:49 tomcopeland Exp $
10   */
11  public class Viewer {
12      /***
13       * starts the viewer
14       *
15       * @param args arguments
16       */
17      public static void main(String[] args) {
18          new MainFrame();
19      }
20  }